Roff reader: allow table options to be empty.
Partially addresses #5026.
This commit is contained in:
parent
92a810dc66
commit
dae03de44c
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ tableRow = do
|
|||
return (c:cs)
|
||||
|
||||
tableOptions :: PandocMonad m => RoffLexer m [TableOption]
|
||||
tableOptions = try $ many1 tableOption <* spaces <* char ';'
|
||||
tableOptions = try $ many tableOption <* spaces <* char ';'
|
||||
|
||||
tableOption :: PandocMonad m => RoffLexer m TableOption
|
||||
tableOption = do
|
||||
|
|
Loading…
Add table
Reference in a new issue