aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-07 18:32:50 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-07 18:32:50 -0500
commit4c1a4402f92204abee5a9425e74864825799f5d2 (patch)
tree1de6922d182f50743e6e1cbef434465a4d81f9d8 /doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn
parentb14a228c2c19be6279696baf40a270ddf44c51fd (diff)
downloadikiwiki-4c1a4402f92204abee5a9425e74864825799f5d2.tar
ikiwiki-4c1a4402f92204abee5a9425e74864825799f5d2.tar.gz
* htmlscrubber: Further work around #365971 by adding tags for 'br/', 'hr/'
and 'p/'.
Diffstat (limited to 'doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn')
-rw-r--r--doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn7
1 files changed, 7 insertions, 0 deletions
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 f329d5208..e30c4c9c8 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
@@ -22,3 +22,10 @@ I tried searching the web and wiki but could not find any information on why <br
> --[[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]]