if you create an unordered list in tinymce and hit the tab key the code created looks like this:
<ul>
<li><span style="white-space: pre;"> </span>list item 1</li>
</ul>
however, if you click on the indent button in the editor's toolbar (instead of the tab key), the following code is created:
<ul>
<li>list item 1
<ul>
<li>list item 1.1</li>
</ul>
</li>
</ul>
i would like that same thing to happen when i press the tab key. i want nested lists instead of just a white space. is there a way to achieve this? thanks!