summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2022-04-20 13:34:41 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2022-04-20 13:34:41 -0700
commitf3cfeba3efc1a94b02040e5b206123f58d08313a (patch)
treea3edbfc02203bd97ddd73517c64313c81d6d6b8a /test
parentec27946869e6829348fc14c6c9eca14af005cdcc (diff)
Don't parse inline notes with blank lines inside.
Previously we parsed them but discarded part of the content. Closes #8028.
Diffstat (limited to 'test')
-rw-r--r--test/command/8028.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/command/8028.md b/test/command/8028.md
new file mode 100644
index 000000000..325e93b64
--- /dev/null
+++ b/test/command/8028.md
@@ -0,0 +1,10 @@
+```
+% pandoc
+foo^[a note
+
+with multiple paragraphs]
+^D
+<p>foo^[a note</p>
+<p>with multiple paragraphs]</p>
+
+```