From f9336f2a49362bc28f41ecf2ab34de5c0b1fee8a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 8 Sep 2023 15:13:50 -0700 Subject: [PATCH] chore: feed tweak --- src/_includes/partials/feeds/json.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_includes/partials/feeds/json.liquid b/src/_includes/partials/feeds/json.liquid index 9880c25c..b75d951b 100644 --- a/src/_includes/partials/feeds/json.liquid +++ b/src/_includes/partials/feeds/json.liquid @@ -10,7 +10,7 @@ "id": "{{ entry.url | btoa }}", "title": "{{ entry.title | escape }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %}", "url": "{{ entry.url }}", - "content_text": "{{ entry.title }} {{ entry.url }}", + "content_text": "{{ entry.title | escape }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %}", "date_published": "{{ entry.date | stringToDate | dateToRfc822 }}" }{% if not forloop.last %},{% endif %} {%- endfor %}