]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
web commit by http://weakish.int.eu.org/
[git.ikiwiki.info.git] / doc / bugs / undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
1 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;! 
3     <section>
5     some text
7     </section>
10 the output html
12    <p><section></p> <p>some text</p> <p></section></p> 
14 And another example of mismatched tags:
18     <div>
20    some text
22     </div>
23     </div>
26    The out put becomes:
28    <div>
30    some text
32    </div>
34    <p></div></p>