aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/LaTeX.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Readers/LaTeX.hs')
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs
index 09de52f7d..1516397b5 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -231,8 +231,13 @@ blockCommands = M.fromList $
, ("subsubsection", section 3)
, ("paragraph", section 4)
, ("subparagraph", section 5)
+ -- beamer slides
+ , ("frametitle", section 3)
+ , ("framesubtitle", section 4)
+ -- letters
, ("opening", (para . trimInlines) <$> tok)
, ("closing", closing)
+ --
, ("rule", optional opt *> tok *> tok *> pure horizontalRule)
, ("begin", mzero) -- these are here so they won't be interpreted as inline
, ("end", mzero)