From eb13f76deca92f460d38ce58f743a13be9358b03 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 28 Oct 2018 21:49:27 -0700 Subject: Roff tokenizer: handle e.g. `\*n`. --- src/Text/Pandoc/Readers/Roff.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Text/Pandoc') diff --git a/src/Text/Pandoc/Readers/Roff.hs b/src/Text/Pandoc/Readers/Roff.hs index 72c97e22f..524801a08 100644 --- a/src/Text/Pandoc/Readers/Roff.hs +++ b/src/Text/Pandoc/Readers/Roff.hs @@ -613,7 +613,7 @@ checkDefined name = do escString :: PandocMonad m => RoffLexer m [LinePart] escString = try $ do pos <- getPosition - (do cs <- escapeArg + (do cs <- escapeArg <|> count 1 alphaNum resolveString cs pos) <|> mempty <$ char 'S' -- cgit v1.2.3