diff --git a/hakyll.cabal b/hakyll.cabal
--- a/hakyll.cabal
+++ b/hakyll.cabal
@@ -1,5 +1,5 @@
 Name:    hakyll
-Version: 3.2.5.0
+Version: 3.2.5.1
 
 Synopsis: A static website compiler library
 Description:
@@ -73,7 +73,7 @@
     old-locale  >= 1.0    && < 2.0,
     old-time    >= 1.0    && < 1.3,
     pandoc      >= 1.6    && < 2.0,
-    parsec      >= 2.1    && < 3.2,
+    parsec      >= 3.0    && < 3.2,
     process     >= 1.0    && < 1.4,
     regex-base  >= 0.93   && < 1.0,
     regex-pcre  >= 0.93   && < 1.0,
diff --git a/src/Hakyll.hs b/src/Hakyll.hs
--- a/src/Hakyll.hs
+++ b/src/Hakyll.hs
@@ -31,6 +31,7 @@
     , 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.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
--- 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'.
