]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
web commit by http://weakish.int.eu.org/: minor
[ikiwiki.git] / doc / bugs / undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn
index 1928d04f2c63c0511294b447d9b4ce827d23aebb..9289759f1f68fee3a1faf9548c10eb57ea889021 100644 (file)
@@ -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 &amp;lt; and &amp;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>