aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-09-08 10:48:02 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-09-08 10:48:02 -0700
commit3421f3eac71709566b9072e095048619cf813ace (patch)
treef0ad08adcdee5f735544aa7ebeb7987d559cdb35 /src/Text/Pandoc/Readers
parent91240d08b7f3315d160f4f2628ba7d558734a690 (diff)
downloadpandoc-3421f3eac71709566b9072e095048619cf813ace.tar.gz
Removed old beamer template.
We now use the default.latex template for both latex and beamer. It contains conditionals for the beamer-specific things. `pandoc -D beamer` will return this template.
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs
index d0e95bd85..4bdf02734 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -1224,6 +1224,7 @@ inlineCommands = M.fromList $
, ("textrm", extractSpaces (spanWith ("",["roman"],[])) <$> tok)
, ("textup", extractSpaces (spanWith ("",["upright"],[])) <$> tok)
, ("texttt", ttfamily)
+ , ("textenglish", spanWith ("",[],[("lang","en")]) <$> tok)
, ("sout", extractSpaces strikeout <$> tok)
, ("lq", return (str "‘"))
, ("rq", return (str "’"))