summaryrefslogtreecommitdiff
path: root/src/Hakyll/Web
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-01-14 08:50:34 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-01-14 08:50:34 +0100
commit6e7dc0e58fd2d7814934e0c041a4e18232102087 (patch)
tree8da9e502a245704a8fda38748efe6d02e76be318 /src/Hakyll/Web
parent3ea3c52f535d3faaa930dfc4ef5812f0ef690ec3 (diff)
downloadhakyll-6e7dc0e58fd2d7814934e0c041a4e18232102087.tar.gz
Micro-cleanup
Diffstat (limited to 'src/Hakyll/Web')
-rw-r--r--src/Hakyll/Web/Pandoc.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hakyll/Web/Pandoc.hs b/src/Hakyll/Web/Pandoc.hs
index 2656212..acd5f56 100644
--- a/src/Hakyll/Web/Pandoc.hs
+++ b/src/Hakyll/Web/Pandoc.hs
@@ -89,7 +89,7 @@ pageRenderPandocWith :: P.ParserState
-> P.WriterOptions
-> Compiler (Page String) (Page String)
pageRenderPandocWith state options =
- pageReadPandocWith state >>^ (fmap $ writePandocWith options)
+ pageReadPandocWith state >>^ fmap (writePandocWith options)
-- | The default reader options for pandoc parsing in hakyll
--