diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-10-27 08:19:44 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-10-27 08:19:44 -0700 |
commit | dae03de44c748a89140ed1baf915d042bcc30dda (patch) | |
tree | 27327d8ebb50f780e55cefd6eaad8ff962b2bdf1 /src/Text | |
parent | 92a810dc667da51d637682c5dced92381510dfe1 (diff) | |
download | pandoc-dae03de44c748a89140ed1baf915d042bcc30dda.tar.gz |
Roff reader: allow table options to be empty.
Partially addresses #5026.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/Roff.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Roff.hs b/src/Text/Pandoc/Readers/Roff.hs index bbbe49171..a98678a30 100644 --- a/src/Text/Pandoc/Readers/Roff.hs +++ b/src/Text/Pandoc/Readers/Roff.hs @@ -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 |