Hi,
I just want to make on override of the default unordered list in article.
For example: If I create a new article and click on the button to insert unordered list
I will get one that looks like this:<ul>
<li>Bla1</li>
<li>Bla2</li>
<li>Bla3</li>
</ul>
I just want to add a span into the <li> tag so it looks like this:
<ul>
<li><span>Bla1</span></li>
<li><span>Bla2</span></li>
<li><span>Bla3</span></li>
</ul>
I penetrated google for hours but I can't find any solution.
I appreciate any help. Thanks a lot