diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2021-06-27 20:30:06 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2021-06-27 20:30:06 +0200 |
commit | 0c39509d9b6a58958228cebf5d643598e5c98950 (patch) | |
tree | f13b3e49bef24935dc1349996548bdd9ff5c1ca4 | |
parent | 0a1eef2cbedeafe5a04e932ba4b22bf7b3e999c5 (diff) | |
download | pandoc-0c39509d9b6a58958228cebf5d643598e5c98950.tar.gz |
Ignore landscape
-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 2ec593974..cdccaa535 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -1653,6 +1653,7 @@ environments = M.fromList , ("center", divWith ("", ["center"], []) <$> env "center" blocks) , ("flushright", divWith ("", ["flushright"], []) <$> env "flushright" blocks) , ("flushleft", divWith ("", ["flushleft"], []) <$> env "flushleft" blocks) + , ("landscape", env "landscape" blocks) , ("longtable", env "longtable" $ resetCaption *> simpTable "longtable" False >>= addTableCaption) , ("table", env "table" $ |