fix: escape titles
This commit is contained in:
parent
4f969ba441
commit
ec1e76db6c
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
||||||
</image>
|
</image>
|
||||||
{% for entry in entries limit: 20 -%}
|
{% for entry in entries limit: 20 -%}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ entry.title }}</title>
|
<title>{{ entry.title | escape }}</title>
|
||||||
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
||||||
<pubDate>{{ entry.date | stringToDate | dateToRfc822 }}</pubDate>
|
<pubDate>{{ entry.date | stringToDate | dateToRfc822 }}</pubDate>
|
||||||
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
||||||
|
|
Reference in a new issue