From 339392bf549a8a02ea17f94c02fb01cf121bc05a Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 19 Jul 2019 10:32:59 -0700 Subject: Markdown: Ensure that expanded latex macros end with space if original did. Closes #4442. --- src/Text/Pandoc/Readers/LaTeX/Parsing.hs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/Text/Pandoc/Readers/LaTeX/Parsing.hs') diff --git a/src/Text/Pandoc/Readers/LaTeX/Parsing.hs b/src/Text/Pandoc/Readers/LaTeX/Parsing.hs index a265d6ca2..eeebab3e6 100644 --- a/src/Text/Pandoc/Readers/LaTeX/Parsing.hs +++ b/src/Text/Pandoc/Readers/LaTeX/Parsing.hs @@ -226,7 +226,16 @@ rawLaTeXParser retokenize parser valParser = do Right ((val, raw), st) -> do updateState (updateMacros (sMacros st <>)) _ <- takeP (T.length (untokenize toks')) - return (val, T.unpack (untokenize raw)) + let result = untokenize raw + -- ensure we end with space if input did, see #4442 + let result' = + case reverse toks' of + (Tok _ (CtrlSeq _) t : _) + | " " `T.isSuffixOf` t + , not (" " `T.isSuffixOf` result) + -> result <> " " + _ -> result + return (val, T.unpack result') applyMacros :: (PandocMonad m, HasMacros s, HasReaderOptions s) => String -> ParserT String s m String -- cgit v1.2.3