master
Joey Hess 2008-01-04 04:34:58 -05:00
parent 78e3f5a657
commit ce3b55de42
1 changed files with 16 additions and 16 deletions

View File

@ -1,34 +1,34 @@
If you put in something such as undefined tags or mismatched tags in .mdwn file, ikiwiki will put <p></p> around them. But ikiwiki will NOT convert < and > to &amp;lt; and &amp;gt;!
<section>
<section>
some text
some text
</section>
</section>
the output html
<p><section></p> <p>some text</p> <p></section></p>
<p><section></p> <p>some text</p> <p></section></p>
And another example of mismatched tags:
<div>
some text
</div>
</div>
The out put is:
<div>
some text
some text
</div>
</div>
The out put becomes:
<div>
some text
</div>
<p></div></p>
<p></div></p>