I am facing an issue with the numbered list in ckeditor
. When I try to bold some text in li
, only the text is getting bold, without the preceding number. This is how it looks like,
- One
- Two
- Three
It should be like this
2. Two
When I check the source, I found the code like below
<li><strong>Two</strong></li>
I would like to know is there any way to change the working of bold
button, so that it will add something like below
<li style="font-weight:bold">Two</li>
<p> Hello <strong>World</strong></p>