LaTeX reader: support longtable.

Closes #2411.
This commit is contained in:
John MacFarlane 2015-09-23 08:34:18 -07:00
parent f232a0a720
commit 72e71a1dad

View file

@ -1022,6 +1022,8 @@ environments = M.fromList
, ("figure", env "figure" $
resetCaption *> skipopts *> blocks >>= addImageCaption)
, ("center", env "center" blocks)
, ("longtable", env "table" $
resetCaption *> skipopts *> blocks >>= addTableCaption)
, ("table", env "table" $
resetCaption *> skipopts *> blocks >>= addTableCaption)
, ("tabular*", env "tabular" $ simpTable True)