diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-03-18 22:43:57 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-03-18 22:43:57 +0100 |
commit | 87f99f3fdf0c372c2e5ded0112ff432aa0d7571f (patch) | |
tree | 4f1641d4273c17300b8cb6b8896c995db7c86ddb /test | |
parent | 435221a9f36ac7d7ea2b1a618f992a45083bb445 (diff) | |
download | pandoc-87f99f3fdf0c372c2e5ded0112ff432aa0d7571f.tar.gz |
HTML reader: Better sanity checks on raw HTML.
This also affects the Markdown reader.
Closes #3257.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/3257.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/command/3257.md b/test/command/3257.md new file mode 100644 index 000000000..31d9426ee --- /dev/null +++ b/test/command/3257.md @@ -0,0 +1,13 @@ +``` +% pandoc -t native +(i<j) +^D +[Para [Str "(i<j)"]] +``` + +``` +% pandoc -t native +i<j-1, j>k +^D +[Para [Str "i<j-1,",Space,Str "j>k"]] +``` |