fix: escapes

This commit is contained in:
Cory Dransfeldt 2024-03-15 12:26:47 -07:00
parent eb4bcfdf73
commit c2e56688ab

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 }}", "title": "{{ entry.title | escape }}",
"url": "{{ entry.url }}", "url": "{{ entry.url }}",
"content_text": "{{ entry.title }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}", "content_text": "{{ entry.title | escape }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
"date_published": "{{ entry.date | stringToRFC822Date }}" "date_published": "{{ entry.date | stringToRFC822Date }}"
}{% if not forloop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{%- endfor %} {%- endfor %}