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, })), });