From 26bdbde62f262492c1d628a03eb89df8b003a487 Mon Sep 17 00:00:00 2001 From: Joshua Seigler Date: Sun, 22 Oct 2017 00:22:11 -0400 Subject: [PATCH] :bug: DW-408 Fix broken RSS feed --- rss/dash_blog_rss.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rss/dash_blog_rss.xml b/rss/dash_blog_rss.xml index 12f4a6b..254a9a7 100644 --- a/rss/dash_blog_rss.xml +++ b/rss/dash_blog_rss.xml @@ -11,17 +11,17 @@ {{ site.name | xml_escape }} {% if site.description %}{{ site.description | xml_escape }}{% endif %} {{ site.url }} - + {% for post in site.posts %} - {{ post.title | xml_escape }} + <![CDATA[{{ post.title }}]]> {% if post.author.name %} {{ post.author.name | xml_escape }} {% endif %} {{ post.date | date_to_rfc822 }} - {{ site.url }}{{ post.url }} - {{ site.url }}{{ post.url }} + {{ site.url }}{{ post.url | xml_escape }} + {{ site.url }}{{ post.url | xml_escape }} {% endfor %}