From 8dd9b92e2afaf217fdd5b534388cf71b664b806c Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Wed, 4 Mar 2026 13:47:36 +0200 Subject: [PATCH] Use dc:creator instead of email-less author --- src/pages/rss.xml.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/rss.xml.ts b/src/pages/rss.xml.ts index fbd3969..08bd5f3 100644 --- a/src/pages/rss.xml.ts +++ b/src/pages/rss.xml.ts @@ -16,12 +16,13 @@ export async function GET(context: APIContext) { title: "Python Insider", description: "The official blog of the Python core development team.", site: context.site!.toString(), + xmlns: { dc: "http://purl.org/dc/elements/1.1/" }, items: posts.map((post) => ({ title: post.data.title, pubDate: post.data.publishDate, description: post.data.description ?? "", link: withBase(`${postUrl(post.id, post.data.publishDate)}/`), - author: post.data.author, + customData: `${post.data.author}`, categories: post.data.tags, })), });