aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-10-15 23:15:40 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-10-15 23:15:40 -0700
commit2357e61748eada76a41a72adaf5adcb815b4a574 (patch)
treed30dae6cf035e1c50d56d01a197a7e5199d067c5 /src/Text/Pandoc/Readers
parentf4e35a1fecd8fb63240a5659285cfc66c5780bac (diff)
downloadpandoc-2357e61748eada76a41a72adaf5adcb815b4a574.tar.gz
LaTeX reader: fixed longtable support.
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs
index aeeed346d..359661c3e 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -1023,7 +1023,7 @@ environments = M.fromList
, ("figure", env "figure" $
resetCaption *> skipopts *> blocks >>= addImageCaption)
, ("center", env "center" blocks)
- , ("longtable", env "table" $
+ , ("longtable", env "longtable" $
resetCaption *> skipopts *> blocks >>= addTableCaption)
, ("table", env "table" $
resetCaption *> skipopts *> blocks >>= addTableCaption)