I'm having really weird issue with WYSIWYG editor, it doesn't allow me to make nested ordered list.
Explanation:
To best explain the issue, I'm quoting it from here.
- Create a numbered list in WYSIWYG editor
- Nest one item with "indent" button
- Preview - list is shown as one-level list
- Save and View - list is shown as one-level list
- Edit again - list is shown as one-level list
Example:
Before I save draft/publish post, it looks like this:
Screenshot: Image link here.
CODE:
<ol>
<li>One</li>
<ol>
<li>1.1</li>
<li>1.2</li>
</ol>
<li>Two</li>
<ol>
<li>2.1</li>
<li>2.2</li>
</ol>
<li>Three</li>
<li>Four</li>
<li>Five</li>
</ol>
And after I save/publish the post, the editor turns it into this:
Screenshot: Image link here.
CODE:
<ol>
<li>One</li>
</ol>
<ol>
<li>1.1</li>
<li>1.2</li>
</ol>
<ul>
<li>Two</li>
</ul>
<ol>
<li>2.1</li>
<li>2.2</li>
</ol>
<ul>
<li>Three</li>
<li>Four</li>
<li>Five</li>
</ul>
It'd be great if anybody can help.