summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-10-31 21:13:15 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-10-31 21:14:38 -0700
commitfb6e5812bce4c71d6ac9a8946f0d69d4c08820de (patch)
tree563a5df00eba487b47f63b1c17fd9c4e0ce93a72 /test/command
parentfd7e3cb18f55e05795180b782a1b61dc602b6ac4 (diff)
Fixed regression in parsing of HTML comments in markdown...
and other non-HTML formats (`Text.Pandoc.Readers.HTML.htmlTag`). The parser stopped at the first `>` character, even if it wasn't the end of the comment. Closes #4019.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/4019.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/command/4019.md b/test/command/4019.md
new file mode 100644
index 000000000..ab13f0233
--- /dev/null
+++ b/test/command/4019.md
@@ -0,0 +1,8 @@
+```
+pandoc --wrap=preserve
+This <!-- x > 0 --> works!
+This <!-- x > 0 --> fails?
+^D
+<p>This <!-- x > 0 --> works!
+This <!-- x > 0 --> fails?</p>
+```