aboutsummaryrefslogtreecommitdiff
path: root/pandoc.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-01-03 11:19:36 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-01-03 11:19:59 -0800
commit2014e2b4eaa1d82b29de772d9ea836e4ac2138d1 (patch)
tree59ca582319d3d40b3021a02ad7fa9450fcfcd6c6 /pandoc.hs
parent0675346e761f6831a8be312e11009555a14e3c72 (diff)
downloadpandoc-2014e2b4eaa1d82b29de772d9ea836e4ac2138d1.tar.gz
Fixed paths for LaTeXMathML and MathMLinHTML scripts.
Diffstat (limited to 'pandoc.hs')
-rw-r--r--pandoc.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/pandoc.hs b/pandoc.hs
index 2300076c2..6857ebdda 100644
--- a/pandoc.hs
+++ b/pandoc.hs
@@ -898,11 +898,11 @@ main = do
variables' <- case mathMethod of
LaTeXMathML Nothing -> do
s <- readDataFileUTF8 datadir
- ("data" </> "LaTeXMathML.js")
+ ("LaTeXMathML.js")
return $ ("mathml-script", s) : variables
MathML Nothing -> do
s <- readDataFileUTF8 datadir
- ("data"</>"MathMLinHTML.js")
+ ("MathMLinHTML.js")
return $ ("mathml-script", s) : variables
_ -> return variables