X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/3e11f9ad94036bd03d787ca9f9295ea277d703bb..30c23b5e72028d97253cc5ba027f4c8314c9008a:/doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn diff --git a/doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn b/doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn index d32b2e978..2c3fdea3e 100644 --- a/doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn +++ b/doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn @@ -5,6 +5,27 @@ I am trying to add a post address to a document: Second line -As you can see, the `
` is being removed. I disabled [[htmlscrubber]], but that was not it. The [markdown Dingus](http://daringfireball.net/projects/markdown/dingus) on its homepage processes the inline HTML just fine. +As you can see, the `
` is being removed. I disabled [[plugins/htmlscrubber]], but that was not it. The [markdown Dingus](http://daringfireball.net/projects/markdown/dingus) on its homepage processes the inline HTML just fine. I tried searching the web and wiki but could not find any information on why
would be removed. + +> It does work if you use `
`: +> +> First line
+> Second line +> +> Or, as we've just been told in #ikiwiki: put two spaces at the end of the first line. +> +> First line +> Second line +> +> --[[tschwinge]] + +> > `
` is also valid, so this is a bug still. --[[madduck]] + +>>> It _is_ the htmlscrubber that removes that. It's due to [[!debbug 365971]], +>>> basically the [[!cspan HTML::Scrubber]] doesn't understand xhtml tags +>>> of this sort at all, I hacked it to support `
` by tellig it to treak +>>> the "/" as an attribute, but if there's no space, it doesn't see it as +>>> an attribute. Hmm, I could also add `br` as a tag name, that would catch both cases. +>>> Ok, [[done]] --[[Joey]]