summaryrefslogtreecommitdiffstats
path: root/templates/feeds/news_description.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/feeds/news_description.html')
-rw-r--r--templates/feeds/news_description.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/feeds/news_description.html b/templates/feeds/news_description.html
index c428b9e..a1e6446 100644
--- a/templates/feeds/news_description.html
+++ b/templates/feeds/news_description.html
@@ -1,4 +1,3 @@
-{% autoescape off %}
-{{obj.author.get_full_name}} wrote:<br />
-{{ obj.content }}
-{% endautoescape %}
+{% load markup %}
+<p>{{obj.author.get_full_name}} wrote:</p>
+{{ obj.content|markdown }}