summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/brochure/hakyll.hs2
-rw-r--r--examples/hakyll/examples/brochure.zipbin3689 -> 3793 bytes
-rw-r--r--examples/hakyll/tutorial.markdown2
3 files changed, 2 insertions, 2 deletions
diff --git a/examples/brochure/hakyll.hs b/examples/brochure/hakyll.hs
index 8040bdf..819924f 100644
--- a/examples/brochure/hakyll.hs
+++ b/examples/brochure/hakyll.hs
@@ -13,6 +13,6 @@ main = hakyll $ do
forM_ ["about.rst", "index.markdown", "code.lhs"] $ \page -> do
route page $ setExtension "html"
- compile page $ readPageCompiler
+ compile page $ pageCompiler
>>> applyTemplateCompiler "templates/default.html"
>>> relativizeUrlsCompiler
diff --git a/examples/hakyll/examples/brochure.zip b/examples/hakyll/examples/brochure.zip
index 619d9a9..c1a5d79 100644
--- a/examples/hakyll/examples/brochure.zip
+++ b/examples/hakyll/examples/brochure.zip
Binary files differ
diff --git a/examples/hakyll/tutorial.markdown b/examples/hakyll/tutorial.markdown
index 9ee6066..f61ccd0 100644
--- a/examples/hakyll/tutorial.markdown
+++ b/examples/hakyll/tutorial.markdown
@@ -72,7 +72,7 @@ main = hakyll $ do
forM_ ["about.rst", "index.markdown", "code.lhs"] $ \page -> do
route page $ setExtension "html"
- compile page $ readPageCompiler
+ compile page $ pageCompiler
>>> applyTemplateCompiler "templates/default.html"
>>> relativizeUrlsCompiler
~~~~~