LaTeX reader: support \lq, \rq.

This commit is contained in:
John MacFarlane 2017-08-17 10:45:05 -07:00
parent 2a0e2e6fd6
commit b9b35059f6

View file

@ -1209,6 +1209,8 @@ inlineCommands = M.fromList $
, ("textup", extractSpaces (spanWith ("",["upright"],[])) <$> tok)
, ("texttt", ttfamily)
, ("sout", extractSpaces strikeout <$> tok)
, ("lq", return (str ""))
, ("rq", return (str ""))
, ("textquoteleft", return (str ""))
, ("textquoteright", return (str ""))
, ("textquotedblleft", return (str ""))