diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn index 1928d04f2..9289759f1 100644 --- a/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn +++ b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn @@ -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> + <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> |