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 %}