I am unable to get any of my local SilverStripe RSS feeds to display properly in any browser because the HTML tags are being escaped.
Here is the markup from RSSFeed.ss:
<description>$Description.AbsoluteLinks.EscapeXML</description>
Why is this? I can't think of any reason I would want < and > to display as < and > in a browser. But when I just use $Description.XML I get parsing errors. So my workaround was to use $Description.FirstParagraph(html) but then I can't figure a way to use this with AbsoluteLinks -- which I need in order for images to show up in the feed. Can someone explain to me why we are escaping tags in this template? I just want the HTML from the content to display in the feed. Why wouldn't I??
Thanks in advance,
Garrett