templates: don't escape HTML for Atom feed; it's not necessary
1 file changed, 1 insertion(+), 1 deletion(-)
jump to
M src/templates.ts → src/templates.ts
@@ -178,7 +178,7 @@ $post.children("updated").text(post.date.toISOString()); $post.find("author > name").text(config.title); $post.children("summary").text(post.description || ""); const content = marked.parse((await getPost(post.input)).content); - $post.children("content").html(Bun.escapeHTML(await content)); + $post.children("content").html(await content); $post.appendTo($feed); }