From 8b984ffe6ac0d0c32db7641795af26498e024f8b Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Wed, 6 Nov 2024 18:07:12 -0500 Subject: [PATCH] Update configuration of `feed` plugin --- _config.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/_config.ts b/_config.ts index ac9c120..bc4922b 100644 --- a/_config.ts +++ b/_config.ts @@ -42,15 +42,19 @@ site.use(feed({ "/blog/feed.json", ], info: { - title: "Foster Hangdaan's Blog", - description: "My thoughts and ideas.", - published: new Date(), + authorName: "=site.author.name", + authorUrl: "=site.author.url", + description: "A strange place where I write something other than code.", lang: "en", + published: new Date(), + title: "Foster Hangdaan's Blog", }, items: { - title: "=title", + authorName: "=author.name", + authorUrl: "=author.url", description: "=description", published: "=date", + title: "=title", updated: "=updated", }, }));