diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-12-27 12:26:15 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-12-27 12:26:15 -0800 |
commit | a888083ee1b381e8f8abab58d7af83d88c5343d0 (patch) | |
tree | 1c5bad40d224ed6993c07b8de087cdb56b139ac4 /test/command | |
parent | cc9e3a91724dff0b962d23a58c1188d60dee07dd (diff) | |
download | pandoc-a888083ee1b381e8f8abab58d7af83d88c5343d0.tar.gz |
HTML reader: parse div with class `line-block` as LineBlock.
See #4162.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/4162.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/command/4162.md b/test/command/4162.md new file mode 100644 index 000000000..d88e1ec4e --- /dev/null +++ b/test/command/4162.md @@ -0,0 +1,10 @@ +``` +% pandoc -f html -t native +<div class="line-block">hi<br /><br> + there</div> +^D +[LineBlock + [[Str "hi"] + ,[] + ,[Str "\160there"]]] +``` |