9a67a486c2
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1104 788f1e2b-df1e-0410-8736-df70ead52e1b
7 lines
337 B
Haskell
7 lines
337 B
Haskell
-- | Definitions for use of ASCIIMathML in HTML.
|
|
-- (See <http://www1.chapman.edu/~jipsen/mathml/asciimath.html>.)
|
|
module Text.Pandoc.ASCIIMathML ( asciiMathMLScript ) where
|
|
|
|
-- | String containing ASCIIMathML javascript.
|
|
asciiMathMLScript :: String
|
|
asciiMathMLScript = "<script type=\"text/javascript\">\n@ASCIIMathML.js@</script>\n"
|