I'm trying to figure out how I can wrap another HTML tag within when a users click on the ordered list button in TinyMCE.
Example:
<ol>
<li>something</li>
</ol>
Will become:
<ol>
<li><span>something</span></li>
</ol>
The reason is that I need the text in the span to different from the numbered bullet. I found a wrapInner() jQuery solution but it doesn't work because I need it to show up in the editor.
I am running the jQuery version of TinyMCE.
Thanks in advance for the help.