Remove email suffix from RSS config

master
Will Faught 2 years ago
parent c133d20c89
commit 43fac7337a

@ -277,8 +277,8 @@ link_to_page = false # Link to the page instead of the front matter link, if pre
page_link = "⏎" # If a front matter link is present, and link_to_page is false, link to the page with this text page_link = "⏎" # If a front matter link is present, and link_to_page is false, link to the page with this text
[paige.feed.rss] [paige.feed.rss]
managing_editor_email = "" managing_editor = "" # Example is "Will Faught <will.faught@example.com>"
web_master_email = "" web_master = "" # Example is "Will Faught <will.faught@example.com>"
[paige.git] [paige.git]
commit_url = "" # Example is "https://github.com/willfaught/paige/commit/%s" commit_url = "" # Example is "https://github.com/willfaught/paige/commit/%s"

@ -104,8 +104,8 @@ name = "Will Faught"
url = "https://willfaught.com/paige" url = "https://willfaught.com/paige"
[params.paige.feed.rss] [params.paige.feed.rss]
managing_editor_email = "will.faught@example.com" managing_editor_email = "Will Faught <will.faught@example.com>"
web_master_email = "will.faught@example.com" web_master_email = "Will Faught <will.faught@example.com>"
[taxonomies] [taxonomies]
author = "authors" author = "authors"

@ -29,13 +29,13 @@
<lastBuildDate>{{ $page.PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</lastBuildDate> <lastBuildDate>{{ $page.PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</lastBuildDate>
{{ end }} {{ end }}
<link>{{ $page.Permalink }}</link> <link>{{ $page.Permalink }}</link>
{{ with $page.Param "paige.feed.rss.managing_editor_email" }} {{ with $page.Param "paige.feed.rss.managing_editor" }}
<managingEditor>{{ . }}</managingEditor> <managingEditor>{{ . }}</managingEditor>
{{ end }} {{ end }}
{{ with $title }} {{ with $title }}
<title>{{ . }}</title> <title>{{ . }}</title>
{{ end }} {{ end }}
{{ with $page.Param "paige.feed.rss.web_master_email" }} {{ with $page.Param "paige.feed.rss.web_master" }}
<webMaster>{{ . }}</webMaster> <webMaster>{{ . }}</webMaster>
{{ end }} {{ end }}
{{ range $pages }} {{ range $pages }}

Loading…
Cancel
Save