fix: link encoding

This commit is contained in:
Cory Dransfeldt 2023-08-06 20:55:30 -07:00
parent 9391506983
commit a2152e8184
No known key found for this signature in database

View file

@ -10,9 +10,9 @@ permalink: /follow.xml
{% for item in follow.posts %}
<entry>
<title>{{ item.title | escape }}</title>
<link href="{{item.url | url_encode}}" />
<link href="{{item.url | stripUtm | encodeAmp }}" />
<updated>{{ item.date_published | date: "%m.%d.%Y" }}</updated>
<id>{{ item.url | url_encode }}</id>
<id>{{ item.url | stripUtm | encodeAmp }}</id>
<content type="html"></content>
</entry>
{% endfor %}