diff --git a/homeassistant/components/rss_feed_template/__init__.py b/homeassistant/components/rss_feed_template/__init__.py index b979e4d5261..c9871c8f6b5 100644 --- a/homeassistant/components/rss_feed_template/__init__.py +++ b/homeassistant/components/rss_feed_template/__init__.py @@ -83,17 +83,19 @@ class RssView(HomeAssistantView): response += "\n" if self._title is not None: - response += " %s\n" % escape(self._title.async_render()) + response += " %s\n" % escape( + self._title.async_render(parse_result=False) + ) for item in self._items: response += " \n" if "title" in item: response += " " - response += escape(item["title"].async_render()) + response += escape(item["title"].async_render(parse_result=False)) response += "\n" if "description" in item: response += " " - response += escape(item["description"].async_render()) + response += escape(item["description"].async_render(parse_result=False)) response += "\n" response += " \n"