diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/templates.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/templates.ts b/src/templates.ts index d4642e1..b5043c0 100644 --- a/src/templates.ts +++ b/src/templates.ts @@ -178,7 +178,7 @@ async function renderFeed(title: string, posts: Post[], tag?: string) { $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); } |