-
Is there already a method for getting an RSS feed of the blog where the feed contains the full content of each post instead of just the description? Asking because I need this for use with Mailchimp so that I can auto-publish newsletters by posting to the blog. For what it's worth, I have this working on my site that am am porting over to this theme and am simply hoping I don't have to rebuild the rss templates in here like I did last time. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
The RSS feed is generated using a template (Hugo internal or custom). There no configuration on summary /content. So, you'd have to update /customize it for what you'd like. I guess, replace |
Beta Was this translation helpful? Give feedback.
The RSS feed is generated using a template (Hugo internal or custom). There no configuration on summary /content. So, you'd have to update /customize it for what you'd like.
I guess, replace
{{ .Summary | html }}
w/{{ .Description | html }}
should do the trick: https://github.com/h-enk/doks/blob/master/layouts/rss.xml#L23