chore: fix escapes

This commit is contained in:
Cory Dransfeldt 2023-09-20 08:14:49 -07:00
parent 804c9ded3f
commit c1bb14956a
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -8,9 +8,9 @@
"items": [{% for entry in entries limit: 20 -%}
{
"id": "{{ entry.url | btoa }}",
"title": "{{ entry.title | escape }}",
"title": "{{ entry.title }}",
"url": "{{ entry.url }}",
"content_text": "{{ entry.title | escape }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
"content_text": "{{ entry.title }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
"date_published": "{{ entry.date | stringToDate | dateToRfc822 }}"
}{% if not forloop.last %},{% endif %}
{%- endfor %}

View file

@ -15,11 +15,11 @@
</image>
{% for entry in entries limit: 20 -%}
<item>
<title>{{ entry.title | escape }}</title>
<title>{{ entry.title }}</title>
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
<pubDate>{{ entry.date }}</pubDate>
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
<description>{{ entry.excerpt | markdown | escape }}</description>
<description>{{ entry.excerpt | markdown }}</description>
</item>
{%- endfor %}
</channel>