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