NOTE: If you are a developer, please use a private wiki based on foswiki/trunk on a daily base ...or use
trunk.foswiki.org to view this page for some minimal testing.
Use
Item9693 for docu changes for 1.2 and 2.0.
Item9607: Fix XHTML validation by not self-closing the paragraph tag
| Priority: |
CurrentState: |
AppliesTo: |
Component: |
WaitingFor: |
| Normal |
Closed |
Engine |
|
|
Foswiki's default DOCTYPE is XHTML Transitional. XHTML does not (officially) allow self closing paragraph tags, but Foswiki generates one for each empty line.
Line
1188 in
Render.pm:
$line = '<p />'; # SMELL: should be <p></p>
This can eiter be:
<p></p>
or
<p>
--
ArthurClemens - 02 Sep 2010