LaTeX reader: fixed parsing of tabular* environment.

This was just a typo in the source.

Closes #4279.
This commit is contained in:
John MacFarlane 2018-01-19 11:39:27 -08:00
parent f019d3cc45
commit 62c395dafa

View file

@ -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)