What is the best way to create a full-text RSS feed for a HUGO site?
Is there an option/param for that or do we need to write a new template to include anything extra in there beyond whats generated by default?
You just answered your own question, or at least provided the way to figure it out:
The link you provided displays the default RSS template that Hugo uses. If there are any site parameters checked to choose between .Summary and .Content, set the value of that parameter. Otherwise, you’ll have to adapt the template for your own needs.
I also added safeHTML to description (not in the docs)
Now I am trying to get the content to render without getting caught up on a the encoded special chars in posts
trying <content:encoded><![CDATA[{{ .Content | safeHTML }}]]></content:encoded>
I had inside the folder layouts, 2 folders:
posts — with --> rss.xml for all the blog
categories — with --> rss.xml for only blogs about the categories about R.
I left only the second one, but nothing has changed.
Do you know what else I could check?
sorry man, I’m at a loss here. Your code is similar to mine and everything. Best would be to open a new thread and share your source code so we can all take a look.