Actions
Bug #95392
openHTMLparser don't remove closing tag
Status:
New
Priority:
Should have
Assignee:
-
Category:
Frontend
Target version:
-
Start date:
2021-09-28
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Hello dear Core Team,
im using this configuration inside a TYPO3 10.4.20 Composer installation:
// Remove any 'shy' classes from <span> elements: lib.parseFunc_RTE.nonTypoTagStdWrap.HTMLparser.tags.span.fixAttrib.class.removeIfEquals = shy // Remove all <span> elements which have no attribute: lib.parseFunc_RTE.nonTypoTagStdWrap.HTMLparser.rmTagIfNoAttrib = span
when there are nested span tags we have stuff like this happening
The DB entry shows
<p><span class="big">Wir suchen Verstä<span class="shy">­</span>rkung für unser Team und freuen uns darauf Sie kennen zu lernen !</span></p>
and its rendered after passing through the parseFunc to this
<p><span class="big">Wir suchen Verstä</span>rkung für unser Team und freuen uns darauf Sie kennen zu lernen !</p>
Sebastian Klein wrote some more information about this here:
https://github.com/sebkln/linebreak/issues/7
Thanks a lot for your hard work.
Updated by Oliver Hader about 3 years ago
Did you identify, whether that worked in earlier versions and when it did stop working?
Updated by Oliver Pfaff about 3 years ago
Hi Oliver,
No, sorry I didn't, this one was the first time i noticed it because there was nested styles in the sentence. In my research after this, I had found some similar forge entries like https://forge.typo3.org/issues/50144 maybe it's connected.
Updated by Georg Ringer 5 months ago
- Related to Bug #50144: HTMLParser does not remove end tag when applying rmTagIfNoAttrib added
Actions