summaryrefslogtreecommitdiff
path: root/test/command/3497.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/3497.md')
-rw-r--r--test/command/3497.md51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/command/3497.md b/test/command/3497.md
new file mode 100644
index 000000000..ca591cdd6
--- /dev/null
+++ b/test/command/3497.md
@@ -0,0 +1,51 @@
+Escape list markers at beginning of paragraph:
+
+```
+% pandoc -t markdown
+\* ok
+
+\+ ok
+
+\- ok
+
+1\. ok
+
+a\. ok
+^D
+\* ok
+
+\+ ok
+
+\- ok
+
+1\. ok
+
+a\. ok
+```
+
+Here we don't need to escape because there's no space:
+
+```
+% pandoc -t markdown
+\+ok
+
+\-ok
+
+1.ok
+^D
++ok
+
+-ok
+
+1.ok
+```
+
+Also escape things that might become line blocks or tables:
+
+```
+% pandoc -t markdown
+\| hi \|
+^D
+\| hi \|
+```
+