2017-03-05 10:44:25 +01:00
|
|
|
Pandoc recognizes an abbreviation and inserts a nonbreaking
|
|
|
|
space (among other things, this prevents a sentence-ending
|
|
|
|
space from being inserted in LaTeX output).
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -t native
|
|
|
|
Mr. Bob
|
|
|
|
^D
|
2021-09-19 21:09:51 +02:00
|
|
|
[ Para [ Str "Mr.\160Bob" ] ]
|
2017-03-05 10:44:25 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
If you don't want this to happen you can escape the period:
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -t native
|
|
|
|
Hi Mr\. Bob
|
|
|
|
^D
|
2021-09-29 06:17:53 +02:00
|
|
|
[ Para [ Str "Hi" , Space , Str "Mr." , Space , Str "Bob" ]
|
|
|
|
]
|
2017-03-05 10:44:25 +01:00
|
|
|
```
|
|
|
|
|