aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-09-12 08:58:47 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-09-12 08:58:47 -0700
commit4177ee86261f624232cf6022d28dba573af128fd (patch)
tree6e03650c27877ca3e043c3e9e9773fc8bd195612 /test
parent2e2795412def2f1f7c01b0b719b4d15a9b6f20f4 (diff)
downloadpandoc-4177ee86261f624232cf6022d28dba573af128fd.tar.gz
Textile reader: allow 'pre' code in list item.
Closes #3916.
Diffstat (limited to 'test')
-rw-r--r--test/command/3916.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/command/3916.md b/test/command/3916.md
new file mode 100644
index 000000000..9ac0834d7
--- /dev/null
+++ b/test/command/3916.md
@@ -0,0 +1,11 @@
+```
+% pandoc -f textile -t native
+# text text
+<pre>blabla</pre>
+# more
+^D
+[OrderedList (1,DefaultStyle,DefaultDelim)
+ [[Plain [Str "text",Space,Str "text"]
+ ,CodeBlock ("",[],[]) "blabla"]
+ ,[Plain [Str "more"]]]]
+```