In my TYPO3 6.2.31 instance in nested <ul>
RTE adds <p class="bodytext"></p>
.
In backend the code looks like this:
<ul>
<li> Text
<ul>
<li> Text
In frontend when its rendered the code looks like this:
<ul>
<li> Text
<p class="bodytext"></p>
<ul>
<li> Text
How can I prevent TYPO3 and RTE to add this <p class="bodytext"></p>
?