NO-ISSUE Merged from release/0.2 #75

Merged
squid merged 3 commits from release/0.2 into main 2025-07-26 01:03:43 +08:00
Showing only changes of commit 7770a5b569 - Show all commits

View File

@ -5,7 +5,9 @@
const { html }: { html: string } = $props();
const sanitizedHtml = $derived(sanitizeHtml(html));
const sanitizedHtml = $derived(
sanitizeHtml(html, { allowedTags: sanitizeHtml.defaults.allowedTags.concat(['img']) })
);
</script>
{@html sanitizedHtml}