summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-03-24 16:11:56 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-03-24 16:11:56 +0100
commit438e8686cf707cc0fe338678111a63fdc1fc5bf2 (patch)
tree051a15846d839cc4950bafb9feece2c02dfbd8d9 /test
parent9945f9129fc46be38b3362fe70950f538191e194 (diff)
Markdown writer: don't emit a simple table if `simple_tables` disabled.
Closes #3529.
Diffstat (limited to 'test')
-rw-r--r--test/command/3529.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/command/3529.md b/test/command/3529.md
new file mode 100644
index 000000000..fdf42f68e
--- /dev/null
+++ b/test/command/3529.md
@@ -0,0 +1,15 @@
+```
+% pandoc -t markdown-simple_tables-pipe_tables-grid_tables+multiline_tables
+A B
+-- --
+7 8
+9 10
+^D
+ --------
+ A B
+ --- ----
+ 7 8
+
+ 9 10
+ --------
+```