LaTeX reader: support \endinput. Closes #5233.

This commit is contained in:
John MacFarlane 2019-01-22 21:39:26 -08:00
parent 3707bed4c1
commit 5ddd7b121e
2 changed files with 10 additions and 0 deletions

View file

@ -1765,6 +1765,7 @@ blockCommands = M.fromList
addMeta "bibliography" . splitBibs . toksToString))
, ("addbibresource", mempty <$ (skipopts *> braced >>=
addMeta "bibliography" . splitBibs . toksToString))
, ("endinput", mempty <$ skipMany tok)
-- includes
, ("lstinputlisting", inputListing)
, ("inputminted", inputMinted)

9
test/command/5233.md Normal file
View file

@ -0,0 +1,9 @@
```
% pandoc -f latex -t plain
foo
\endinput
bar
^D
foo
```