diff options
-rw-r--r-- | Text/Pandoc/Writers/HTML.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Text/Pandoc/Writers/HTML.hs b/Text/Pandoc/Writers/HTML.hs index dfc8f219d..660bf652e 100644 --- a/Text/Pandoc/Writers/HTML.hs +++ b/Text/Pandoc/Writers/HTML.hs @@ -409,7 +409,7 @@ inlineToHtml opts inline = return $ image ! [src (url ++ "?" ++ str), alt str, title str] GladTeX -> - return $ tag "eq" << str + return $ primHtml $ "<EQ>" ++ str ++ "</EQ>" PlainMath -> inlineListToHtml opts (readTeXMath str) >>= return . (thespan ! [theclass "math"])) |