web commit by http://weakish.int.eu.org/
parent
c4373aa487
commit
78e3f5a657
|
@ -0,0 +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 &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 becomes:
|
||||
|
||||
<div>
|
||||
|
||||
some text
|
||||
|
||||
</div>
|
||||
|
||||
<p></div></p>
|
Loading…
Reference in New Issue