summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-01-20 14:43:33 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2018-01-20 14:44:08 -0800
commitac08a887cf83ce3d08b56447a1dbfc8aec4cd1a3 (patch)
tree9fbc7f778199a9f37b1252cd6f280bc90a96a73a /test
parente69ca9a070c84caeb8056dd28f03c2586718ca33 (diff)
Markdown reader: Fix parsing bug with nested fenced divs.
Closes #4281. Previously we allowed "nonindent spaces" before the opening and closing `:::`, but this interfered with list parsing, so now we require the fences to be flush with the margin of the containing block.
Diffstat (limited to 'test')
-rw-r--r--test/command/4281.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/command/4281.md b/test/command/4281.md
new file mode 100644
index 000000000..9806e8178
--- /dev/null
+++ b/test/command/4281.md
@@ -0,0 +1,18 @@
+```
+% pandoc -t native
+:::: {.a}
+- ::: {.b}
+ text
+ :::
+ ::: {.c}
+ text
+ :::
+::::
+^D
+[Div ("",["a"],[])
+ [BulletList
+ [[Div ("",["b"],[])
+ [Para [Str "text"]]
+ ,Div ("",["c"],[])
+ [Para [Str "text"]]]]]]
+```