fix: link encoding
This commit is contained in:
parent
9391506983
commit
a2152e8184
1 changed files with 2 additions and 2 deletions
|
@ -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 %}
|
||||
|
|
Reference in a new issue