]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn
* htmlscrubber: Further work around #365971 by adding tags for 'br/', 'hr/'
[ikiwiki.git] / doc / bugs / __60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn
index e4f6be997d36417eaaec397407956da48c43019a..e30c4c9c847b7bd30d88edaed2ad9e7d0262a469 100644 (file)
@@ -20,3 +20,12 @@ I tried searching the web and wiki but could not find any information on why <br
 > Second line
 >
 > --[[tschwinge]]
+
+> > `<br/>` 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 `<br />` 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]]