diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-01-05 11:56:37 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-01-05 11:56:37 -0800 |
commit | b26247a4a833fc7871b3d6b9cdacda0a6672253f (patch) | |
tree | dccf43896d0dde9a1e08257145531598468d6d0d /src/Text/Pandoc/Readers | |
parent | cf6cd15c276606c3f33b2f7ce19786fc9ac0e454 (diff) | |
download | pandoc-b26247a4a833fc7871b3d6b9cdacda0a6672253f.tar.gz |
LaTeX reader: Added "index" to ignorable commands.
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 1c224de9e..03679bb1d 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -435,7 +435,7 @@ unknownCommand = try $ do else return $ Plain [Str $ concat args] commandsToIgnore :: [String] -commandsToIgnore = ["special","pdfannot","pdfstringdef","bibliography"] +commandsToIgnore = ["special","pdfannot","pdfstringdef", "index","bibliography"] skipChar :: GenParser Char ParserState Block skipChar = do |