aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn
blob: 2c3fdea3e38ac97156d9c08c9e7e63e3d836f3cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
I am trying to add a post address to a document:

<address>
  First line<br/>
  Second line
</address>

As you can see, the `<br/>` 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 <br/> would be removed.

> It does work if you use `<br />`:
>
> First line<br />
> 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]]

> > `<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]]