aboutsummaryrefslogtreecommitdiff
path: root/test/command/4635.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/4635.md')
-rw-r--r--test/command/4635.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/command/4635.md b/test/command/4635.md
new file mode 100644
index 000000000..320b83956
--- /dev/null
+++ b/test/command/4635.md
@@ -0,0 +1,31 @@
+```
+% pandoc -f markdown -t native
+(cf.
+foo)
+^D
+[Para [Str "(cf.",SoftBreak,Str "foo)"]]
+```
+
+```
+% pandoc -f markdown -t native
+a (cf.
+foo)
+^D
+[Para [Str "a",Space,Str "(cf.",SoftBreak,Str "foo)"]]
+```
+
+```
+% pandoc -f markdown -t native
+cf.
+foo
+^D
+[Para [Str "cf.\160foo"]]
+```
+
+```
+% pandoc -f markdown -t native
+a cf.
+foo
+^D
+[Para [Str "a",SoftBreak,Str "cf.\160foo"]]
+```