diff options
Diffstat (limited to 'Text')
-rw-r--r-- | Text/Pandoc/Writers/HTML.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Text/Pandoc/Writers/HTML.hs b/Text/Pandoc/Writers/HTML.hs index 0085e5419..881e3c07c 100644 --- a/Text/Pandoc/Writers/HTML.hs +++ b/Text/Pandoc/Writers/HTML.hs @@ -404,9 +404,13 @@ inlineToHtml opts inline = (return $ case writerHTMLMathMethod opts of ASCIIMathML _ -> stringToHtml ("$" ++ str ++ "$") + MimeTeX url -> + image ! [src (url ++ "?" ++ str), + alt str, title str] GladTeX -> tag "eq" << str - _ -> stringToHtml ("$" ++ str ++ "$")) + PlainMath -> + stringToHtml str) (TeX str) -> return noHtml (HtmlInline str) -> return $ primHtml str (Link [Code str] (src,tit)) | "mailto:" `isPrefixOf` src -> |