How to add leading zeros for an ordered list?

Things I have tried

It is feasible in reading mode with the following CSS snippet.

ol { 
  list-style-type: decimal-leading-zero;
}

I’ve also tried similar things in editing mode but failed with:

.cm-formatting.cm-formatting-list.cm-formatting-list-ol {
    list-style-type: decimal-leading-zero; 
}

I doubt CSS might not work for adding leading zeros for ordered lists in editing mode, so is there any plugin or workaround to achieve this? Thanks.

I don’t remember how to target editing mode, but the answer might be in one of these links:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.