diff options
-rw-r--r-- | data/templates/atom.xml | 1 | ||||
-rw-r--r-- | src/Hakyll/Web/Feed.hs | 3 | ||||
-rw-r--r-- | web/examples.markdown | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/data/templates/atom.xml b/data/templates/atom.xml index 4a4eaaf..ef1faef 100644 --- a/data/templates/atom.xml +++ b/data/templates/atom.xml @@ -6,6 +6,7 @@ <id>$root$$url$</id> <author> <name>$authorName$</name> + <email>$authorEmail$</email> </author> <updated>$updated$</updated> $body$ diff --git a/src/Hakyll/Web/Feed.hs b/src/Hakyll/Web/Feed.hs index e7aecc9..f2f3342 100644 --- a/src/Hakyll/Web/Feed.hs +++ b/src/Hakyll/Web/Feed.hs @@ -45,6 +45,8 @@ data FeedConfiguration = FeedConfiguration feedDescription :: String , -- | Name of the feed author. feedAuthorName :: String + , -- | Email of the feed author. + feedAuthorEmail :: String , -- | Absolute root URL of the feed site (e.g. @http://jaspervdj.be@) feedRoot :: String } deriving (Show, Eq) @@ -65,6 +67,7 @@ createFeed feedTemplate itemTemplate url configuration items = $ trySetField "title" (feedTitle configuration) $ trySetField "description" (feedDescription configuration) $ trySetField "authorName" (feedAuthorName configuration) + $ trySetField "authorEmail" (feedAuthorEmail configuration) $ trySetField "root" (feedRoot configuration) $ trySetField "url" url $ fromBody body diff --git a/web/examples.markdown b/web/examples.markdown index a3e0493..fc608e5 100644 --- a/web/examples.markdown +++ b/web/examples.markdown @@ -52,3 +52,5 @@ this list. This list has no particular ordering. [source](http://gitorious.org/shakthimaan-blog) - <http://www.alfredodinapoli.com/>, [source](https://github.com/CharlesStain/alfredodinapoli.com) +- <http://www.rohanjain.in/>, + [source](https://github.com/crodjer/rohanjain.in) |