upstream #1

Merged
jblu merged 1007 commits from upstream into main 2024-11-04 22:35:57 -06:00
Showing only changes of commit c31a4f0aa1 - Show all commits

View File

@ -7,10 +7,10 @@ const generateRssItem = (post) => `
<guid>${siteMetadata.siteUrl}/blog/${post.slug}</guid>
<title>${escape(post.title)}</title>
<link>${siteMetadata.siteUrl}/blog/${post.slug}</link>
<description>${escape(post.summary)}</description>
${post.summary && <description>escape(post.summary)</description>}
<pubDate>${new Date(post.date).toUTCString()}</pubDate>
<author>${siteMetadata.email} (${siteMetadata.author})</author>
${post.tags.map((t) => `<category>${t}</category>`).join('')}
${post.tags && post.tags.map((t) => `<category>${t}</category>`).join('')}
</item>
`