I wanted to deliver the full text in an RSS feed, so I created my own template.
Among them, there is a part that outputs as follows.
{{ with .Content }}<content:encoded><![CDATA[{{ . | safeHTML }}]]></content:encoded>{{ end }}
However, when I output an RSS feed with this template, <![CDATA[ is replaced by <![CDATA[.
How can I properly output this as <![CDATA[?
I would appreciate any advice.