From fbfda613bd98615273c86ff37a447dcd69794ba1 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 28 Mar 2023 13:17:20 -0700 Subject: [PATCH] fix: remove html content --- src/feed.11ty.liquid | 2 +- src/follow.11ty.liquid | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/feed.11ty.liquid b/src/feed.11ty.liquid index 96b8069d..96533908 100644 --- a/src/feed.11ty.liquid +++ b/src/feed.11ty.liquid @@ -13,7 +13,7 @@ permalink: '/feed.json' "id": "{{ site.url }}{{ item.url }}" "title": "{{ item.data.title }}", "url": "{{ site.url }}{{ item.url }}", - "content_html": "{{ item.data.post_excerpt | mdToHtml | escape }}", + "content_html": "", "date_published" "{{ item.date | date: "%Y-%m-%dT%H:%M" }}" }{% if not forloop.last %},{% endif %} {% endfor %} diff --git a/src/follow.11ty.liquid b/src/follow.11ty.liquid index c5379cd8..444fdb44 100644 --- a/src/follow.11ty.liquid +++ b/src/follow.11ty.liquid @@ -13,7 +13,7 @@ permalink: '/follow.json' "id": "{{ item.id }}", "title": "{{ item.title }}", "url": "{{ item.url }}", - "content_html": "{{ item.content_html | mdToHtml | escape }}", + "content_html": "", "date_published": "{{ item.date_published | date: "%Y-%m-%dT%H:%M" }}" }{% if not forloop.last %},{% endif %} {% endfor %}