mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-23 07:55:45 +00:00
LaTeX reader: Skip everything after \end{document}.
This commit is contained in:
@@ -653,7 +653,7 @@ rawLaTeXInline = do
|
||||
|
||||
environments :: M.Map String (LP Blocks)
|
||||
environments = M.fromList
|
||||
[ ("document", env "document" blocks)
|
||||
[ ("document", env "document" blocks <* skipMany anyChar)
|
||||
, ("letter", env "letter" letter_contents)
|
||||
, ("center", env "center" blocks)
|
||||
, ("tabular", env "tabular" simpTable)
|
||||
|
||||
Reference in New Issue
Block a user