summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--atom.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/atom.xml b/atom.xml
index c43d02c..3d77b95 100644
--- a/atom.xml
+++ b/atom.xml
@@ -25,7 +25,9 @@ layout: null
<updated>{{ post.date | date_to_xmlschema }}</updated>
<link rel="alternate" type="text/html" href="{{ post.url | prepend: site.baseurl | prepend: site.url }}" />{% if post.description %}
<summary>{{ post.description | strip | xml_escape }}</summary>{% endif %}
- <content>{{ post.content | strip_html }}</content>{% for tag in post.tags %}
+ <content type="html" xml:base="{{ post.url | absolute_url | xml_escape }}">
+ {{ post.content | strip | xml_escape }}
+ </content>{% for tag in post.tags %}
<category term="{{ tag | xml_escape }}" />{% endfor %}{% for cat in post.categories %}
<category term="{{ cat | xml_escape }}" />{% endfor %}
</entry>{% endfor %}