]> sipb.mit.edu Git - ikiwiki.git/commitdiff
web commit by http://weakish.int.eu.org/
authorJoey Hess <joey@kitenet.net>
Fri, 4 Jan 2008 09:33:26 +0000 (04:33 -0500)
committerJoey Hess <joey@kitenet.net>
Fri, 4 Jan 2008 09:33:26 +0000 (04:33 -0500)
doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn [new file with mode: 0644]

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 (file)
index 0000000..1928d04
--- /dev/null
@@ -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>