We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dc:creator
author
1 parent cf6c33f commit 2eae039Copy full SHA for 2eae039
src/pages/rss.xml.ts
@@ -16,12 +16,13 @@ export async function GET(context: APIContext) {
16
title: "Python Insider",
17
description: "The official blog of the Python core development team.",
18
site: context.site!.toString(),
19
+ xmlns: { dc: "http://purl.org/dc/elements/1.1/" },
20
items: posts.map((post) => ({
21
title: post.data.title,
22
pubDate: post.data.publishDate,
23
description: post.data.description ?? "",
24
link: withBase(`${postUrl(post.id, post.data.publishDate)}/`),
- author: post.data.author,
25
+ customData: `<dc:creator>${post.data.author}</dc:creator>`,
26
categories: post.data.tags,
27
})),
28
});
0 commit comments