2007-11-03 23:27:58 +00:00
|
|
|
-- | 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
|
2008-02-09 03:20:42 +00:00
|
|
|
asciiMathMLScript = "<script type=\"text/javascript\">\n" ++ @ASCIIMathML.js.comment@ ++ @ASCIIMathML.js.packed@ ++ "</script>\n"
|