diff --git a/frontend/src/lib/components/DocumentCard.svelte b/frontend/src/lib/components/DocumentCard.svelte index 3606363..a88e43e 100644 --- a/frontend/src/lib/components/DocumentCard.svelte +++ b/frontend/src/lib/components/DocumentCard.svelte @@ -76,7 +76,7 @@ {doc.title || '제목 없음'}

{#if doc.ai_summary} -

{doc.ai_summary.slice(0, 100)}

+

{doc.ai_summary.replace(/[*#_`~]/g, '').slice(0, 100)}

{/if}
{#if showDomain && doc.ai_domain} diff --git a/frontend/src/routes/documents/[id]/+page.svelte b/frontend/src/routes/documents/[id]/+page.svelte index d5b4f62..93936c5 100644 --- a/frontend/src/routes/documents/[id]/+page.svelte +++ b/frontend/src/routes/documents/[id]/+page.svelte @@ -131,7 +131,7 @@ {#if doc.ai_summary}

AI 요약

-

{doc.ai_summary}

+
{@html renderMd(doc.ai_summary)}
{/if}