summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-05-16 09:18:57 +0200
committerGitHub <noreply@github.com>2017-05-16 09:18:57 +0200
commitfbce4228a52de9bba5a30197b165afc66a5a83dc (patch)
tree789742233061fb97e7c44bc0c150ea7505dca014 /src/Text/Pandoc
parentaffc800c47433f6e804c7838ffb85d50a413b55c (diff)
parent2de5208311472d4fe951acf69d36156a6465dfc1 (diff)
Merge pull request #3671 from WUUUGI/horizont-spacing
Added support for horizontal spacing in LaTeX
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs
index 9a887c40c..30c788666 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -590,7 +590,7 @@ inlineCommands = M.fromList $
, ("u", option (str "u") $ try $ tok >>= accent breve)
, ("i", lit "i")
, ("\\", linebreak <$ (optional (bracketed inline) *> spaces'))
- , (",", pure mempty)
+ , (",", lit "\8198")
, ("@", pure mempty)
, (" ", lit "\160")
, ("ps", pure $ str "PS." <> space)