From 2253c8ef65548afceb668075c92f4b289d1e86b0 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 22 Jul 2010 15:06:46 -0700 Subject: Require texmath >= 0.3, adjusted for new elements. --- src/Text/Pandoc/Readers/TeXMath.hs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Text/Pandoc') diff --git a/src/Text/Pandoc/Readers/TeXMath.hs b/src/Text/Pandoc/Readers/TeXMath.hs index 40cf39987..b0c6e86d4 100644 --- a/src/Text/Pandoc/Readers/TeXMath.hs +++ b/src/Text/Pandoc/Readers/TeXMath.hs @@ -86,6 +86,9 @@ expToInlines (ESubsup x y z) = do y' <- expToInlines y z' <- expToInlines z return $ x' ++ [Subscript y'] ++ [Superscript z'] +expToInlines (EDown x y) = expToInlines (ESub x y) +expToInlines (EUp x y) = expToInlines (ESuper x y) +expToInlines (EDownup x y z) = expToInlines (ESubsup x y z) expToInlines (EText _ x) = Just [Emph [Str x]] expToInlines _ = Nothing -- cgit v1.2.3