Roff tokenizer: allow spaces after table row format spec.

This commit is contained in:
John MacFarlane 2018-10-26 22:55:48 -07:00
parent 8c4812be3f
commit 36f1c4f39b

View file

@ -411,7 +411,7 @@ tableFormatSpec = do
tableFormatSpecLine :: PandocMonad m => RoffLexer m [CellFormat]
tableFormatSpecLine =
many1 $ try $ skipMany spacetab >> tableColFormat
many1 $ try $ skipMany spacetab *> tableColFormat <* skipMany spacetab
tableColFormat :: PandocMonad m => RoffLexer m CellFormat
tableColFormat = do