aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-09-16 20:42:18 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-09-16 20:46:05 -0700
commita07d955d6f96e78ade3e09c150ce580fb6e6f3a7 (patch)
tree5f82883787dba70854bacf7566c840086890e2c8 /test
parent7c22c0202e8ed706d33f301e65f0aa1a847b4ec4 (diff)
downloadpandoc-a07d955d6f96e78ade3e09c150ce580fb6e6f3a7.tar.gz
Fix code blocks using `--preserve-tabs`.
Previously they did not behave as the equivalent input with spaces would. Closes #7573.
Diffstat (limited to 'test')
-rw-r--r--test/command/7573.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/command/7573.md b/test/command/7573.md
new file mode 100644
index 000000000..d6529cde6
--- /dev/null
+++ b/test/command/7573.md
@@ -0,0 +1,11 @@
+```
+% pandoc --preserve-tabs
+<ol>
+ <li>one
+</ol>
+^D
+<ol>
+<li>
+one
+</ol>
+```