Hello there, I want to remove the ordered list prefix item:
Turn this
into
I tried to use
- the
formatter to achieve what I wanted but had no luck.
selectors: [ { selector: 'ol', options: { itemPrefix: ' ' } } ]
selector ul will work, but ol won't work.
This worked for me.
selectors: [ { selector: 'ol', options: { itemPrefix: ' ' } } ]
So I am wondering is it supported already? Or, is there any workaround I can follow to achieve my goal?
Hello there, I want to remove the ordered list prefix item:
Turn this
into
I tried to use
formatterto achieve what I wanted but had no luck.selectors: [ { selector: 'ol', options: { itemPrefix: ' ' } } ]selector
ulwill work, butolwon't work.This worked for me.
So I am wondering is it supported already? Or, is there any workaround I can follow to achieve my goal?