diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-11-01 09:27:51 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-11-01 09:27:51 -0700 |
commit | ed3d46638425825de30aaa3d1152b9343292c315 (patch) | |
tree | 1cef0519e0412bae186b91beff3090b43875222e /test/command | |
parent | f1ebdb814514b998bbb650c9af58eb5cf4d09daa (diff) | |
download | pandoc-ed3d46638425825de30aaa3d1152b9343292c315.tar.gz |
Really fix #3989.
The previous fix only worked in certain cases.
Other cases with `>` in an HTML attribute broke.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/3989.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/command/3989.md b/test/command/3989.md index 32b5e0574..bf078b2e4 100644 --- a/test/command/3989.md +++ b/test/command/3989.md @@ -1,7 +1,7 @@ ``` 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> + <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"]]] ``` |