web commit by http://weakish.int.eu.org/: minor
parent
78e3f5a657
commit
ce3b55de42
|
@ -1,34 +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>
|
||||
<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>
|
||||
|
||||
some text
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
The out put is:
|
||||
|
||||
<div>
|
||||
|
||||
some text
|
||||
some text
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
The out put becomes:
|
||||
|
||||
<div>
|
||||
|
||||
some text
|
||||
|
||||
</div>
|
||||
|
||||
<p></div></p>
|
||||
<p></div></p>
|
||||
|
|
Loading…
Reference in New Issue