From 22078a8690190d5832fd99c36cb73d34b0bd00bd Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 22 Oct 2018 11:06:27 -0700 Subject: Man reader: handle `\~` for nonbreaking space. --- src/Text/Pandoc/Readers/Man.hs | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/Text/Pandoc/Readers/Man.hs b/src/Text/Pandoc/Readers/Man.hs index 00355b5d5..83e4fc681 100644 --- a/src/Text/Pandoc/Readers/Man.hs +++ b/src/Text/Pandoc/Readers/Man.hs @@ -188,6 +188,7 @@ escapeLexer = try $ do '|' -> return " " '\'' -> return "`" '.' -> return "`" + '~' -> return "\160" -- nonbreaking space _ -> escUnknown [c] "\xFFFD" where -- cgit v1.2.3