summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-08-02 10:33:08 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-08-02 10:33:08 -0700
commitced834076d8f4463c60a4f739a3d92a56d3e2183 (patch)
treeab2b5f8136867cf1268fa460c4d54d02a76f6ba1 /test/command
parent9932d52b535143a55fc8d34f5f4d1a1841ed7259 (diff)
DokuWiki reader: better handling for code block in list item.
Closes #3824.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/3824.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/command/3824.md b/test/command/3824.md
new file mode 100644
index 000000000..e479e9e2f
--- /dev/null
+++ b/test/command/3824.md
@@ -0,0 +1,14 @@
+```
+% pandoc -f native -t dokuwiki
+[BulletList
+ [[Para [Str "hi"]
+ ,CodeBlock ("",[],[]) " there"]
+ ,[Para [Str "ok"]]]]
+^D
+ * hi<code>
+ there
+</code>
+ * ok
+
+
+```