hakyll 3.2.0.9 → 3.2.0.10
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
- hakyll.cabal +1/−1
- src/Hakyll/Web/Tags.hs +1/−1
hakyll.cabal view
@@ -1,5 +1,5 @@ Name: hakyll-Version: 3.2.0.9+Version: 3.2.0.10 Synopsis: A static website compiler library Description:
src/Hakyll/Web/Tags.hs view
@@ -170,7 +170,7 @@ renderTagList makeUrl = renderTags makeUrl makeLink (intercalate ", ") where makeLink tag url count _ _ = renderHtml $- H.a ! A.href (toValue url) $ toHtml (tag ++ "(" ++ show count ++ ")")+ H.a ! A.href (toValue url) $ toHtml (tag ++ " (" ++ show count ++ ")") -- | Render tags with links --