X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/78e3f5a657f2e207fc49c501f6522ec3c4065e00..d57ec1c6a4d2e05d2570fb273c7682d383b3b7d9:/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn 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..b01fc44f2 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,46 @@ -If you put in something such as undefined tags or mismatched tags in .mdwn file, ikiwiki will put

around them. But ikiwiki will NOT convert < and > to &lt; and &gt;! +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;! -
+
- some text + some text -
+
the output html -

some text

+

some text

And another example of mismatched tags: -
+
- some text + some text -
-
+ + - The out put becomes: +The out put is: -
+
+ + some text + +
- some text +

- +> This is a bug in markdown. Actually, not converting `<` and `>` in tags is a +> markdown feature -- markdown allows inserting arbirary html, even if it's +> made-up tags. And putting paragraph tags around your `
` tag is +> understandable, since markdown can't know if `
` is intended to +> be a block-level tag or not. The bug is that it puts the `

` around the +> trailing `

` -- it does know what a div is, and it should know that's +> illegal and not do it. I've filed a [bug report](http://bugs.debian.org/459269) about that issue +> alone. If you feel the other things you brought up are bugs, please talk +> to the markdown maintainer. --[[Joey]] -

+[[!tag done]]