From 4e3eefc5b861f7ba1ba9dbea2642ffc24c48238e Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 20 Sep 2023 08:49:07 -0700 Subject: [PATCH] Revert "chore: fix escapes" This reverts commit c1bb14956a117fd223d8ef3f93884085fba2aac3. --- 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 5ef0717b..983deb2c 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 | 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 968ba785..b902afc6 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 }} + {{ entry.title | escape }} {{ entry.url | stripUtm | encodeAmp }} {{ entry.date | stringToDate | dateToRfc822 }} {{ entry.url | stripUtm | encodeAmp }} - {{ entry.excerpt | markdown }} + {{ entry.excerpt | markdown | escape }} {%- endfor %}