diff options
-rw-r--r-- | examples/tagblog/hakyll.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tagblog/hakyll.hs b/examples/tagblog/hakyll.hs index 53e635f..f8afdd5 100644 --- a/examples/tagblog/hakyll.hs +++ b/examples/tagblog/hakyll.hs @@ -52,7 +52,7 @@ main = hakyll $ do -- Add a tag list compiler for every tag match "tags/*" $ route $ setExtension ".html" metaCompile $ require_ "tags" - >>> arr (M.toList . tagsMap) + >>> arr tagsMap >>> arr (map (\(t, p) -> (tagIdentifier t, makeTagList t p))) -- Render RSS feed |