aboutsummaryrefslogtreecommitdiff
path: root/Text/Pandoc/ASCIIMathML.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Text/Pandoc/ASCIIMathML.hs')
-rw-r--r--Text/Pandoc/ASCIIMathML.hs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Text/Pandoc/ASCIIMathML.hs b/Text/Pandoc/ASCIIMathML.hs
deleted file mode 100644
index 233040dcc..000000000
--- a/Text/Pandoc/ASCIIMathML.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-{-# LANGUAGE CPP, TemplateHaskell #-}
--- | Definitions for use of ASCIIMathML in HTML.
--- (See <http://www1.chapman.edu/~jipsen/mathml/asciimath.html>.)
-module Text.Pandoc.ASCIIMathML ( asciiMathMLScript ) where
-import Text.Pandoc.TH ( contentsOf )
-import System.FilePath ( (</>) )
-
--- | String containing ASCIIMathML javascript.
-asciiMathMLScript :: String
-#ifndef __HADDOCK__
-asciiMathMLScript = "<script type=\"text/javascript\">\n" ++
- $(contentsOf $ "data" </> "ASCIIMathML.js.comment") ++
- $(contentsOf $ "data" </> "ASCIIMathML.js.packed") ++ "</script>\n"
-#endif