diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-03-25 12:04:25 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-03-25 12:04:25 -0700 |
commit | 5e69f845d534964bd3d0d1fe275b5cecc0bf3098 (patch) | |
tree | 605bd5cb16b57777ff60a6259e467662bcf2632c /src/Text/Pandoc | |
parent | d7fbc40dff9771181f26d7d9cb3129c9884a5f01 (diff) | |
download | pandoc-5e69f845d534964bd3d0d1fe275b5cecc0bf3098.tar.gz |
LaTeX reader: Better handling of "table" environment.
Positioning options no longer rendered verbatim.
Partially addresses #1204.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 51271edc5..8c3dac263 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -894,6 +894,7 @@ environments = M.fromList , ("letter", env "letter" letter_contents) , ("figure", env "figure" $ skipopts *> blocks) , ("center", env "center" blocks) + , ("table", env "table" $ skipopts *> blocks) , ("tabular", env "tabular" simpTable) , ("quote", blockQuote <$> env "quote" blocks) , ("quotation", blockQuote <$> env "quotation" blocks) |