From c2e56688aba3ff3a3d84f2a99b7e3a755d99e9e8 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 15 Mar 2024 12:26:47 -0700 Subject: [PATCH] fix: escapes --- src/_includes/partials/feeds/json.liquid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_includes/partials/feeds/json.liquid b/src/_includes/partials/feeds/json.liquid index 250bedb9..869b74dc 100644 --- a/src/_includes/partials/feeds/json.liquid +++ b/src/_includes/partials/feeds/json.liquid @@ -8,9 +8,9 @@ "items": [{% for entry in entries limit: 20 -%} { "id": "{{ entry.url | btoa }}", - "title": "{{ entry.title }}", + "title": "{{ entry.title | escape }}", "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 }}" }{% if not forloop.last %},{% endif %} {%- endfor %}