About RSS template customization

{{ with .Content }}<content:encoded>
{{ `<![CDATA[` | safeHTML }}
{{ . | safeHTML }}
{{ `]]>` | safeHTML }}
</content:encoded>{{ end }}

or using printf

{{ with .Content }}<content:encoded>
{{ printf `<![CDATA[%s]]>` . | safeHTML }}
</content:encoded>{{ end }}