I have succcessfuly created a blog using blogdown (see its github).
Unfortunately, when this blogpost appears on another platform (such as R-bloggers) through the RSS feed, the "author" seems to be incorrectly displayed.
Indeed, the "author" is shown as "R on easystats", something that I didn't specify anywhere.
Digging a bit more, I discovered that the RSS feed used had this template with this line:
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
I suppose that somehow the title was misspecified in the parameters, however, I have set it up correctly (I think) in the config.toml.
How can I correctly specify the title and all so that it is correctly caught by the RSS feed? Thank you.