blob: fabc7fba2838c8ae01298389ebb16f65dee615f8 (
plain)
1
2
3
4
5
6
7
|
-- | Definitions for use of Pandoc.ASCIIMathML in HTML.
-- (See <http://www1.chapman.edu/~jipsen/mathml/asciimath.html>.)
module Text.Pandoc.ASCIIMathML ( asciiMathMLScript ) where
-- | String containing Pandoc.ASCIIMathML javascript.
asciiMathMLScript :: String
asciiMathMLScript = "<script type=\"text/javascript\">\n<ASCIIMathML.js></script>\n"
|