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 -%} "items": [{% for entry in entries limit: 20 -%}
{ {
"id": "{{ entry.url | btoa }}", "id": "{{ entry.url | btoa }}",
"title": "{{ entry.title | escape }}", "title": "{{ entry.title }}",
"url": "{{ entry.url }}", "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 }}" "date_published": "{{ entry.date | stringToDate | dateToRfc822 }}"
}{% if not forloop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{%- endfor %} {%- endfor %}

View file

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