mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-12 18:45:58 +00:00
The previous fix only worked in certain cases. Other cases with `>` in an HTML attribute broke.
8 lines
344 B
Markdown
8 lines
344 B
Markdown
```
|
|
pandoc -f markdown -t native
|
|
<span title="1st line of text <br> 2nd line of text">foo</span>
|
|
<span title="1st line of text <br> 2nd line of text">foo</span>
|
|
^D
|
|
[Para [Span ("",[],[("title","1st line of text <br> 2nd line of text")]) [Str "foo"],SoftBreak,Span ("",[],[("title","1st line of text <br> 2nd line of text")]) [Str "foo"]]]
|
|
```
|