LaTeX reader: fixed parsing of tabular* environment.
This was just a typo in the source. Closes #4279.
This commit is contained in:
parent
f019d3cc45
commit
62c395dafa
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue