diff options
author | Joey Hess <joey@kitenet.net> | 2008-01-04 04:34:58 -0500 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2008-01-04 04:34:58 -0500 |
commit | ce3b55de42502dfb2ec099990d74c38ce82bac7b (patch) | |
tree | 034e82f7112bfe428d5c5df70369da05a9c4ea96 /doc | |
parent | 78e3f5a657f2e207fc49c501f6522ec3c4065e00 (diff) |
web commit by http://weakish.int.eu.org/: minor
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> |