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 %}
|
{% for item in follow.posts %}
|
||||||
<entry>
|
<entry>
|
||||||
<title>{{ item.title | escape }}</title>
|
<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>
|
<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>
|
<content type="html"></content>
|
||||||
</entry>
|
</entry>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Reference in a new issue