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 &lt; and &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>
+ <div>
- some text
+ some text
- </div>
- </div>
+ </div>
+ </div>
- The out put becomes:
+The out put is:
- <div>
+ <div>
- some text
+ some text
- </div>
+ </div>
- <p></div></p>
+ <p></div></p>