summaryrefslogtreecommitdiff
path: root/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
blob: 9289759f1f68fee3a1faf9548c10eb57ea889021 (plain)

If you put in something such as undefined tags or mismatched tags in .mdwn file, ikiwiki will put around them. But ikiwiki will NOT convert < and > to &lt; and &gt;!

 <section>

 some text

 </section>

the output html

<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

</div>

<p></div></p>