2e893b43c4
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1427 788f1e2b-df1e-0410-8736-df70ead52e1b
14 lines
590 B
Haskell
14 lines
590 B
Haskell
{-# LANGUAGE CPP, TemplateHaskell #-}
|
|
-- | Definitions for use of LaTeXMathML in HTML.
|
|
-- (See <http://math.etsu.edu/LaTeXMathML/>)
|
|
module Text.Pandoc.LaTeXMathML ( latexMathMLScript ) where
|
|
import Text.Pandoc.TH ( contentsOf )
|
|
import System.FilePath ( (</>) )
|
|
|
|
-- | String containing LaTeXMathML javascript.
|
|
latexMathMLScript :: String
|
|
#ifndef __HADDOCK__
|
|
latexMathMLScript = "<script type=\"text/javascript\">\n" ++
|
|
$(contentsOf $ "data" </> "LaTeXMathML.js.comment") ++
|
|
$(contentsOf $ "data" </> "LaTeXMathML.js.packed") ++ "</script>\n"
|
|
#endif
|