summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-01-30 12:48:54 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-01-30 12:48:54 +0100
commit73d6b1d6614c3965afd96b710bfa79db94d2449e (patch)
treeeb7199d9880a2995a0b2913c32413e28096a7017 /examples
parent340b87899dfd1b4cc223777991593444be76ad02 (diff)
downloadhakyll-73d6b1d6614c3965afd96b710bfa79db94d2449e.tar.gz
Version bump.
Diffstat (limited to 'examples')
-rw-r--r--examples/hakyll/examples/brochure.zipbin3655 -> 3655 bytes
-rw-r--r--examples/hakyll/examples/categoryblog.zipbin0 -> 6916 bytes
-rw-r--r--examples/hakyll/examples/morepages.zipbin4107 -> 4107 bytes
-rw-r--r--examples/hakyll/examples/rssblog.zipbin6614 -> 6550 bytes
-rw-r--r--examples/hakyll/examples/simpleblog.zipbin5923 -> 5881 bytes
-rw-r--r--examples/hakyll/examples/tagblog.zipbin6925 -> 6832 bytes
-rw-r--r--examples/hakyll/tutorial6.markdown5
7 files changed, 3 insertions, 2 deletions
diff --git a/examples/hakyll/examples/brochure.zip b/examples/hakyll/examples/brochure.zip
index 7794738..b0b84b0 100644
--- a/examples/hakyll/examples/brochure.zip
+++ b/examples/hakyll/examples/brochure.zip
Binary files differ
diff --git a/examples/hakyll/examples/categoryblog.zip b/examples/hakyll/examples/categoryblog.zip
new file mode 100644
index 0000000..72c96f5
--- /dev/null
+++ b/examples/hakyll/examples/categoryblog.zip
Binary files differ
diff --git a/examples/hakyll/examples/morepages.zip b/examples/hakyll/examples/morepages.zip
index de3fa9c..b4189f4 100644
--- a/examples/hakyll/examples/morepages.zip
+++ b/examples/hakyll/examples/morepages.zip
Binary files differ
diff --git a/examples/hakyll/examples/rssblog.zip b/examples/hakyll/examples/rssblog.zip
index 432ddf8..51b5591 100644
--- a/examples/hakyll/examples/rssblog.zip
+++ b/examples/hakyll/examples/rssblog.zip
Binary files differ
diff --git a/examples/hakyll/examples/simpleblog.zip b/examples/hakyll/examples/simpleblog.zip
index db51f36..7b9c67d 100644
--- a/examples/hakyll/examples/simpleblog.zip
+++ b/examples/hakyll/examples/simpleblog.zip
Binary files differ
diff --git a/examples/hakyll/examples/tagblog.zip b/examples/hakyll/examples/tagblog.zip
index 89a4fc4..ee8d2a6 100644
--- a/examples/hakyll/examples/tagblog.zip
+++ b/examples/hakyll/examples/tagblog.zip
Binary files differ
diff --git a/examples/hakyll/tutorial6.markdown b/examples/hakyll/tutorial6.markdown
index 12ef3a3..3ab8271 100644
--- a/examples/hakyll/tutorial6.markdown
+++ b/examples/hakyll/tutorial6.markdown
@@ -77,8 +77,9 @@ categoryList :: TagMap -> String
categoryList = uncurry categoryListItem <=< toList
~~~~~
-This function might seem a little harder to understand, and figuring out how it
-works is left as an exercise for the reader[^1].
+This function might seem a little harder to understand if you are not familiar
+with the `<=<` operator. Figuring out how it works is left as an exercise for
+the reader[^1].
[^1]: Hint: `>>=` is `concatMap` in the list monad.