Felix
Felix

Reputation: 5619

TYPO3 RTE remove <p class="bodytext"></p> in nested ul

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

Answers (1)

Heinz Schilling
Heinz Schilling

Reputation: 2252

Try this TypoScript:

lib.parseFunc_RTE.nonTypoTagStdWrap.encapsLines.nonWrappedTag >

Upvotes: 3

Related Questions