aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2008-01-04 04:33:26 -0500
committerJoey Hess <joey@kitenet.net>2008-01-04 04:33:26 -0500
commit78e3f5a657f2e207fc49c501f6522ec3c4065e00 (patch)
tree0851a586f512c63e33ec0065dc056da528531294 /doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
parentc4373aa487ea8206abecb64c4ba5fbbcc90690f7 (diff)
downloadikiwiki-78e3f5a657f2e207fc49c501f6522ec3c4065e00.tar
ikiwiki-78e3f5a657f2e207fc49c501f6522ec3c4065e00.tar.gz
web commit by http://weakish.int.eu.org/
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..1928d04f2
--- /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 <p></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 becomes:
+
+ <div>
+
+ some text
+
+ </div>
+
+ <p></div></p>