Treat \textsl as emphasized text in LaTeX reader.

Closes #850.
This commit is contained in:
John MacFarlane
2013-05-09 15:29:27 -07:00
parent 80ab208b3d
commit af6f216c96
+1
View File
@@ -363,6 +363,7 @@ inlineCommands :: M.Map String (LP Inlines)
inlineCommands = M.fromList $
[ ("emph", emph <$> tok)
, ("textit", emph <$> tok)
, ("textsl", emph <$> tok)
, ("textsc", smallcaps <$> tok)
, ("sout", strikeout <$> tok)
, ("textsuperscript", superscript <$> tok)