Bug #14156
closedcss_styled_content 0.1.0 adds unwanted tags
0%
Description
I just updated from css_styled_content 0.0.9 to 0.1.0. Now Typo3 adds coed to the page that was not there before and in the process wrecks my CSS layout at http://www.asta-bonn.de/ :
1. Each < h1> (previously without any class or wrapping div) now looks like this:
<div class="csc-header csc-header-n1"><h1 class="csc-firstHeader">
2. Each <h2> now looks like this:
<div class="csc-header csc-header-n2"><h2>
3. Each <h3> now looks like this:
<div class="csc-header csc-header-n3"><h3>
4. Each <p> now is double-wrapped (which is broken HTML):
<p><p class="bodytext">...text...</p></p>
5. There are lots of HTML comments in the code, increasing the page size:
(issue imported from #M78)
Updated by Oliver Klee over 20 years ago
Part 4 should be:
"Each p tag is double-wrapped, producing broken HTML:
<p><p class="bodytext">...text...</p></p>
Updated by Peter Niederlag over 20 years ago
'css_styled_content' provides some Typoscript-Setup for output rendering. If you don't like the way it does so, either use some other means or change it according to your needs.
for the comments you can for example put this in your TS-Setup:
'config.disablePrefixComment = 1'