Author in RSS

Hey folks,

I am struggling a bit with RSS. It doesn’t include the author field.
My toml includes

[author]
  name = "Cesare Rocchi"

Is there anything I am missing?
RSS here for reference: http://upbeat.it/atom.xml

Full toml here:

languageCode = "en-us"
contentdir = "content"
publishdir = "public"
builddrafts = false
baseUrl = "http://upbeat.it/"
canonifyurls = true
title = "upbeat.it"
theme = "heather"
rssuri = "atom.xml"

[author]
  name = "Cesare Rocchi"

[params]
  description = "A blog written by Cesare Rocchi"
  search_engine = true
  paginate = true

[permalinks]
  post = "/:year/:month/:day/:title/"

Should I put a name value in the params section?

I figured it out. The default RSS template skips the author field if no email is provided. I added my own RSS template to use just the Site.Author.name field.

1 Like