mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-26 18:26:36 +00:00
LaTeX reader: fixed parsing of tabular* environment.
This was just a typo in the source. Closes #4279.
This commit is contained in:
@@ -2105,7 +2105,7 @@ environments = M.fromList
|
||||
resetCaption *> simpTable "longtable" False >>= addTableCaption)
|
||||
, ("table", env "table" $
|
||||
resetCaption *> skipopts *> blocks >>= addTableCaption)
|
||||
, ("tabular*", env "tabular" $ simpTable "tabular*" True)
|
||||
, ("tabular*", env "tabular*" $ simpTable "tabular*" True)
|
||||
, ("tabularx", env "tabularx" $ simpTable "tabularx" True)
|
||||
, ("tabular", env "tabular" $ simpTable "tabular" False)
|
||||
, ("quote", blockQuote <$> env "quote" blocks)
|
||||
|
||||
Reference in New Issue
Block a user