Merge pull request #3091 from wilx/master-narrow-no-break-space

Translate NARROW NO-BREAK SPACE into LaTeX.
This commit is contained in:
John MacFarlane 2016-09-02 11:42:18 +02:00 committed by GitHub
commit 07c67cf868

View file

@ -296,6 +296,7 @@ stringToLaTeX ctx (x:xs) = do
']' -> "{]}" ++ rest -- optional arguments
'\'' | ctx == CodeString -> "\\textquotesingle{}" ++ rest
'\160' -> "~" ++ rest
'\x202F' -> "\\," ++ rest
'\x2026' -> "\\ldots{}" ++ rest
'\x2018' | ligatures -> "`" ++ rest
'\x2019' | ligatures -> "'" ++ rest