summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-08-18 21:46:55 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-08-18 21:46:55 -0700
commit5ab1162def4e6379c84e3363d917252155d9239a (patch)
treec2da5983f22a268135c9506264234159760b4909 /test/command
parentfbb79c1bcdefb72fbe91dc95ca2e10002c3d5c45 (diff)
Markdown reader: fixed parsing of fenced code after list...
...when there is no intervening blank line. Closes #3733.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/3733.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/command/3733.md b/test/command/3733.md
new file mode 100644
index 000000000..b8a326938
--- /dev/null
+++ b/test/command/3733.md
@@ -0,0 +1,13 @@
+````
+% pandoc -t native
+- Item1
+- Item2
+```yaml
+some: code
+```
+^D
+[BulletList
+ [[Plain [Str "Item1"]]
+ ,[Plain [Str "Item2"]]]
+,CodeBlock ("",["yaml"],[]) "some: code"]
+````