Roff tokenizer: allow \*~
etc.
This commit is contained in:
parent
eb13f76dec
commit
39f026298d
1 changed files with 1 additions and 1 deletions
|
@ -613,7 +613,7 @@ checkDefined name = do
|
|||
escString :: PandocMonad m => RoffLexer m [LinePart]
|
||||
escString = try $ do
|
||||
pos <- getPosition
|
||||
(do cs <- escapeArg <|> count 1 alphaNum
|
||||
(do cs <- escapeArg <|> count 1 anyChar
|
||||
resolveString cs pos)
|
||||
<|> mempty <$ char 'S'
|
||||
|
||||
|
|
Loading…
Reference in a new issue