From d2dc2844e69f04d880116b0c10871b4c06b746b6 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 20 Sep 2023 10:10:53 -0700 Subject: [PATCH] chore: drop json feed 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 983deb2c..5ef0717b 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 | 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 %}