Files for my website bwc9876.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update blog description

Ben C 35464a06 a08b8ad5

+2 -2
+2 -2
src/pages/feed.xml.ts
··· 11 11 12 12 return rss({ 13 13 title: "Ben C's Blog", 14 - description: "Talking about web development, NixOS, Linux customization, and more", 14 + description: "I write here sometimes", 15 15 site: context.site, 16 16 items: blogEntries.map((post) => ({ 17 17 title: post.data.title, 18 18 pubDate: post.data.date, 19 19 description: post.data.summary, 20 20 link: `/blog/posts/${post.id}`, 21 - content: sanitizeHtml(parser.render(post.body), { 21 + content: sanitizeHtml(parser.render(post.body ?? ""), { 22 22 allowedTags: sanitizeHtml.defaults.allowedTags.concat(["img"]) 23 23 }) 24 24 })),