Reputation: 5619
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>
?
Upvotes: 0
Views: 462
Reputation: 2252
Try this TypoScript:
lib.parseFunc_RTE.nonTypoTagStdWrap.encapsLines.nonWrappedTag >
Upvotes: 3