fix: wrangle urls

This commit is contained in:
Cory Dransfeldt 2023-08-04 13:17:00 -07:00
parent c1e0088942
commit 8e0119b2f7
No known key found for this signature in database
5 changed files with 17 additions and 8 deletions

View file

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