pandoc/test/command/4134.md
John MacFarlane 67b6abc806 LaTeX reader: fix \ before newline.
This should be a nonbreaking space, as long as it's not
followed by a blank line. This has been fixed at the tokenizer
level.

Closes #4134.
2017-12-08 16:34:15 -08:00

279 B

% pandoc -f latex -t native
Hello.\
world.
^D
[Para [Str "Hello.\160world."]]
% pandoc -f latex -t native
Hello.\  
 world.
^D
[Para [Str "Hello.\160world."]]
% pandoc -f latex -t native
Hello.\

World.
^D
[Para [Str "Hello.\160"]
,Para [Str "World."]]