From 0276c095ca2bb4530ae02751108ac2ed12ccb36e Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 7 Jul 2010 15:44:59 +0000 Subject: [PATCH] tools: adapt to latest hakyll --- site/hakyll.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/hakyll.hs b/site/hakyll.hs index bd5767301..178946c1d 100644 --- a/site/hakyll.hs +++ b/site/hakyll.hs @@ -56,14 +56,14 @@ pandocwritercfg = defaultWriterOptions { -- ,writerIdentifierPrefix = "" -- ^ Prefix for section & note ids in HTML } -hakyllcfg = defaultHakyllConfiguration { - absoluteUrl = "http://hledger.org" -- Absolute URL of the site. +hakyllcfg = (defaultHakyllConfiguration "http://hledger.org") { +-- absoluteUrl = "http://hledger.org" -- Absolute URL of the site. -- ,additionalContext = Context -- An additional context to use when rendering. This additional context is used globally. -- ,siteDirectory = FilePath -- Directory where the site is placed. -- ,cacheDirectory = FilePath -- Directory for cache files. -- ,enableIndexUrl = Bool -- Enable index links. -- ,previewPollDelay = Int -- Delay between polls in preview mode. - ,pandocParserState = pandocparsercfg + pandocParserState = pandocparsercfg ,pandocWriterOptions = pandocwritercfg }