fix: wrangle urls
This commit is contained in:
parent
c1e0088942
commit
8e0119b2f7
5 changed files with 17 additions and 8 deletions
|
@ -10,9 +10,9 @@ permalink: /books.xml
|
|||
{% for book in books %}
|
||||
<entry>
|
||||
<title>{{ book.title | escape }}</title>
|
||||
<link href="{{ book.link }}" />
|
||||
<link href="{{ book.link | stripUtm | encodeAmp }}" />
|
||||
<updated>{{ book.dateAdded | date: "%m.%d.%Y" }}</updated>
|
||||
<id>{{ book.link | url_encode }}</id>
|
||||
<id>{{ book.link | stripUtm | encodeAmp }}</id>
|
||||
<content type="html"></content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
|
|
Reference in a new issue