Roff tokenizer: allow spaces after table row format spec.
This commit is contained in:
parent
8c4812be3f
commit
36f1c4f39b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue