web commit by http://weakish.int.eu.org/: minor
[ikiwiki] / 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 &lt;p>&lt;/p> around them. But ikiwiki will NOT convert < and > to &amp;lt; and &amp;gt;! 
2
3      <section>
4
5      some text
6
7      </section>
8
9
10 the output html
11
12     <p><section></p> <p>some text</p> <p></section></p> 
13
14 And another example of mismatched tags:
15
16
17
18      <div>
19
20      some text
21
22      </div>
23      </div>
24
25
26 The out put is:
27
28     <div>
29
30     some text
31
32     </div>
33
34     <p></div></p>