summaryrefslogtreecommitdiffstats
path: root/templates/feeds
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-07-06 20:33:03 -0500
committerDan McGee <dan@archlinux.org>2010-07-06 20:33:03 -0500
commit7b73c0ff8c8caa546442e3e3311867f2c6159754 (patch)
tree9cce13bc2d25cc00ebb29f91ffd01fb969e7f0f9 /templates/feeds
parentad162d74db6718b2ba7dd1ab2e1f21847a7c7744 (diff)
downloadarchweb-7b73c0ff8c8caa546442e3e3311867f2c6159754.tar.gz
archweb-7b73c0ff8c8caa546442e3e3311867f2c6159754.zip
Get news markdown formatting working everywhere
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/feeds')
-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 c428b9e2..a1e6446f 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 }}