Skip to content

Commit

Permalink
Treat \textsl as emphasized text in LaTeX reader.
Browse files Browse the repository at this point in the history
Closes jgm#850.
  • Loading branch information
jgm committed May 9, 2013
1 parent 80ab208 commit af6f216
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Text/Pandoc/Readers/LaTeX.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit af6f216

Please sign in to comment.