summaryrefslogtreecommitdiff
path: root/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-05 01:29:27 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-05 01:29:27 -0500
commitf51e47d7f9b0dbc1fe8c356acadbf5ef2da227af (patch)
tree1def260e13c89af24cd6685663cc5c9f58720efe /doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
parent9f2b52cdb0066292b65e226e32fff698393f294a (diff)
parentf9fa96ded77418851da8b094f73c25dbde8a9714 (diff)
Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info
Diffstat (limited to 'doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn')
-rw-r--r--doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn34
1 files changed, 34 insertions, 0 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
new file mode 100644
index 000000000..9463cfb1b
--- /dev/null
+++ b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
@@ -0,0 +1,34 @@
+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;!
+
+ <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 is:
+
+ <div>
+
+ some text
+
+ </div>
+
+ <p></div></p>