aboutsummaryrefslogtreecommitdiff
path: root/test/command/md-abbrevs.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/md-abbrevs.md')
-rw-r--r--test/command/md-abbrevs.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/command/md-abbrevs.md b/test/command/md-abbrevs.md
index 15ab8a728..a3ee6af30 100644
--- a/test/command/md-abbrevs.md
+++ b/test/command/md-abbrevs.md
@@ -6,7 +6,7 @@ space from being inserted in LaTeX output).
% pandoc -t native
Mr. Bob
^D
-[Para [Str "Mr.\160Bob"]]
+[ Para [ Str "Mr.\160Bob" ] ]
```
If you don't want this to happen you can escape the period:
@@ -15,6 +15,7 @@ If you don't want this to happen you can escape the period:
% pandoc -t native
Hi Mr\. Bob
^D
-[Para [Str "Hi",Space,Str "Mr.",Space,Str "Bob"]]
+[ Para [ Str "Hi" , Space , Str "Mr." , Space , Str "Bob" ]
+]
```