Skip to content

Commit

Permalink
LaTeX reader: handle \passthrough macro used by latex writer.
Browse files Browse the repository at this point in the history
Closes #5659.
  • Loading branch information
jgm committed Jul 24, 2019
1 parent 01a52e2 commit 99e24cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Text/Pandoc/Readers/LaTeX.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 99e24cf

Please sign in to comment.