From 824bb49839942ecd3c249833becfb488678ad45e Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 28 Mar 2023 12:36:12 -0700 Subject: [PATCH] fix: date format + content --- src/_data/follow.js | 1 + src/feed.11ty.liquid | 3 ++- src/follow.11ty.liquid | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/_data/follow.js b/src/_data/follow.js index ba80b59c..b7c4ab63 100644 --- a/src/_data/follow.js +++ b/src/_data/follow.js @@ -13,6 +13,7 @@ module.exports = async function () { id: entry.url, title: entry.title, url: entry.url, + content_html: entry.content || '', date_published: entry.published, }) ) diff --git a/src/feed.11ty.liquid b/src/feed.11ty.liquid index 9a6f2439..875d29e1 100644 --- a/src/feed.11ty.liquid +++ b/src/feed.11ty.liquid @@ -13,7 +13,8 @@ permalink: '/feed.json' "id": "{{ site.url }}{{ item.url }}" "title": "{{ item.data.title }}", "url": "{{ site.url }}{{ item.url }}", - "date_published" "{{ item.date | date: "%m.%d.%Y" }}" + "content_html": "{{ item.data.post_excerpt | mdToHtml }}", + "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 d1d1e26e..449a026b 100644 --- a/src/follow.11ty.liquid +++ b/src/follow.11ty.liquid @@ -13,7 +13,8 @@ permalink: '/follow.json' "id": "{{ item.id }}", "title": "{{ item.title }}", "url": "{{ item.url }}", - "date_published": "{{ item.date_published | date: "%m.%d.%Y" }}" + "content_html": "{{ item.content_html | mdToHtml }}", + "date_published": "{{ item.date_published | date: "%Y-%m-%dT%H:%M" }}" }{% if not forloop.last %},{% endif %} {% endfor %} ]