diff options
author | EuAndreh <eu@euandre.org> | 2020-01-25 14:58:46 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-01-25 14:58:46 -0300 |
commit | 25932407da216f9bf06fb5fb37d808dd94ff1352 (patch) | |
tree | b795d0a20896ad1b8011e5bb3300bc6b8377bbfb /hakyll/Main.hs | |
parent | Add public-inbox link in about.org page (diff) | |
download | euandre.org-25932407da216f9bf06fb5fb37d808dd94ff1352.tar.gz euandre.org-25932407da216f9bf06fb5fb37d808dd94ff1352.tar.xz |
Add feedRoot value to Atom
This way the generated file contains the full URL of IDs and paths, as
recommended by W3C Feed Validation Service:
https://validator.w3.org/feed/
Diffstat (limited to '')
-rw-r--r-- | hakyll/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hakyll/Main.hs b/hakyll/Main.hs index d84cf40..c3765db 100644 --- a/hakyll/Main.hs +++ b/hakyll/Main.hs @@ -114,7 +114,7 @@ feedConfiguration = FeedConfiguration , feedDescription = "EuAndreh's blog" , feedAuthorName = "EuAndreh" , feedAuthorEmail = "eu@euandre.org" - , feedRoot = "" + , feedRoot = "https://euandre.org" } dropPrefix :: String -> Routes |