blog: Drop parseable pipe from xml generator

This commit is contained in:
Will Binns 2020-05-23 12:31:01 +02:00
parent 919d7dcedc
commit 9c4938adf7
No known key found for this signature in database
GPG Key ID: 302EBEAEEB74A404

View File

@ -20,8 +20,8 @@ lang: en
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<link>https://bitcoin.org{{ post.url | remove: '.html' }}</link>
<guid isPermaLink="true">https://bitcoin.org{{ post.url | remove: '.html' | }}</guid>
<link>https://bitcoin.org{{ post.url }}</link>
<guid isPermaLink="true">https://bitcoin.org{{ post.url }}</guid>
{% for tag in post.tags %}
<category>{{ tag | xml_escape }}</category>
{% endfor %}