templates: don't escape HTML for Atom feed; it's not necessary
Alan Pearce alan@alanpearce.eu
Mon, 01 Apr 2024 21:55:48 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
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); }