diff options
Diffstat (limited to 'Text')
-rw-r--r-- | Text/Pandoc/Readers/LaTeX.hs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Text/Pandoc/Readers/LaTeX.hs b/Text/Pandoc/Readers/LaTeX.hs index d7d031595..e1efce1e9 100644 --- a/Text/Pandoc/Readers/LaTeX.hs +++ b/Text/Pandoc/Readers/LaTeX.hs @@ -156,7 +156,6 @@ block = choice [ hrule , comment , bibliographic , para - , specialEnvironment , itemBlock , unknownEnvironment , ignore @@ -347,12 +346,6 @@ itemBlock = try $ do -- raw LaTeX -- -specialEnvironment :: GenParser Char st Block -specialEnvironment = do -- these are always parsed as raw - lookAhead (choice (map (\name -> begin name) ["tabular", "figure", - "tabbing", "eqnarry", "picture", "table", "verse", "theorem"])) - rawLaTeXEnvironment - -- | Parse any LaTeX environment and return a Para block containing -- the whole literal environment as raw TeX. rawLaTeXEnvironment :: GenParser Char st Block |