diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-05-27 21:19:59 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-05-27 21:19:59 -0700 |
commit | 38c02f698521131ea4d276a5d635327c72427b3f (patch) | |
tree | 1c52011477e8487db60a291a6d2e918f2a04ae9e /trypandoc | |
parent | 17b4066d677b24c490e60900958b25183a56ff62 (diff) | |
download | pandoc-38c02f698521131ea4d276a5d635327c72427b3f.tar.gz |
Fixes to trypandoc fixes.
Diffstat (limited to 'trypandoc')
-rw-r--r-- | trypandoc/trypandoc.hs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/trypandoc/trypandoc.hs b/trypandoc/trypandoc.hs index 210bab49f..ef4d27492 100644 --- a/trypandoc/trypandoc.hs +++ b/trypandoc/trypandoc.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE OverloadedStrings, CPP #-} +{-# LANGUAGE OverloadedStrings #-} module Main where import Network.Wai.Handler.CGI import Network.Wai @@ -29,13 +29,9 @@ app req respond = do $ lookup fromFormat fromFormats let writer = maybe (error $ "could not find writer for " ++ T.unpack toFormat) id $ lookup toFormat toFormats -#if MIN_VERSION_pandoc(1,14,0) let result = case reader $ tabFilter 4 $ T.unpack text of Right doc -> T.pack $ writer doc Left err -> error (show err) -#else - let result = T.pack $ writer $ reader $ tabFilter 4 $ T.unpack text -#endif let output = encode $ object [ T.pack "result" .= result , T.pack "name" .= if fromFormat == "markdown_strict" |