From c1bb14956a117fd223d8ef3f93884085fba2aac3 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 20 Sep 2023 08:14:49 -0700 Subject: [PATCH] chore: fix escapes --- src/_includes/partials/feeds/json.liquid | 4 ++-- src/_includes/partials/feeds/rss.liquid | 4 ++-- 2 files changed, 4 insertions(+), 4 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 %} diff --git a/src/_includes/partials/feeds/rss.liquid b/src/_includes/partials/feeds/rss.liquid index 635701a6..ae021f8c 100644 --- a/src/_includes/partials/feeds/rss.liquid +++ b/src/_includes/partials/feeds/rss.liquid @@ -15,11 +15,11 @@ {% for entry in entries limit: 20 -%} - {{ entry.title | escape }} + {{ entry.title }} {{ entry.url | stripUtm | encodeAmp }} {{ entry.date }} {{ entry.url | stripUtm | encodeAmp }} - {{ entry.excerpt | markdown | escape }} + {{ entry.excerpt | markdown }} {%- endfor %}