summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Hakyll.hs2
-rw-r--r--src/Hakyll/Web/Feed.hs6
2 files changed, 5 insertions, 3 deletions
diff --git a/src/Hakyll.hs b/src/Hakyll.hs
index 3f258b7..9dd10a0 100644
--- a/src/Hakyll.hs
+++ b/src/Hakyll.hs
@@ -31,6 +31,7 @@ module Hakyll
, module Hakyll.Web.Urls.Relativize
, module Hakyll.Web.Tags
, module Hakyll.Web.Template
+ , module Hakyll.Web.Template.Read
, module Hakyll.Web.Util.Html
) where
@@ -64,4 +65,5 @@ import Hakyll.Web.Urls
import Hakyll.Web.Urls.Relativize
import Hakyll.Web.Tags
import Hakyll.Web.Template
+import Hakyll.Web.Template.Read
import Hakyll.Web.Util.Html
diff --git a/src/Hakyll/Web/Feed.hs b/src/Hakyll/Web/Feed.hs
index 77c97d3..f64bb55 100644
--- a/src/Hakyll/Web/Feed.hs
+++ b/src/Hakyll/Web/Feed.hs
@@ -7,11 +7,11 @@
-- Also note that the pages should have (at least) the following fields to
-- produce a correct feed:
--
--- - @$title@: Title of the item
+-- - @$title$@: Title of the item
--
--- - @$description@: Description to appear in the feed
+-- - @$description$@: Description to appear in the feed
--
--- - @$url@: URL to the item - this is usually set automatically.
+-- - @$url$@: URL to the item - this is usually set automatically.
--
-- In addition, the posts should be named according to the rules for
-- 'Hakyll.Page.Metadata.renderDateField'.