LaTeX reader: handle \passthrough macro used by latex writer.

Closes #5659.
This commit is contained in:
John MacFarlane 2019-07-24 10:18:09 -07:00
parent 01a52e2300
commit 99e24cf183

View file

@ -994,6 +994,8 @@ inlineCommands = M.union inlineLanguageCommands $ M.fromList
, ("textgreater", lit ">")
, ("thanks", skipopts >> note <$> grouped block)
, ("footnote", skipopts >> note <$> grouped block)
, ("passthrough", tok) -- \passthrough macro used by latex writer
-- for listings
, ("verb", doverb)
, ("lstinline", dolstinline)
, ("mintinline", domintinline)