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.
1 parent 21b2af0 commit 2ab0f34Copy full SHA for 2ab0f34
apps/svelte.dev/src/routes/blog/rss.xml/+server.js
@@ -35,7 +35,7 @@ const get_rss = async (posts) => {
35
<item>
36
<title>${escapeHTML(post.metadata.title)}</title>
37
<link>https://svelte.dev/${post.slug}</link>
38
- <author>${escapeHTML(post.metadata.author)}</author>
+ <author>${escapeHTML(post.metadata.author)}</author>
39
<description>${escapeHTML(await render_content(post.file, post.body))}</description>
40
<pubDate>${formatPubdate(/** @type {string} */ (post.file.split('/').pop()).slice(0, 10))}</pubDate>
41
</item>
0 commit comments