feat: lucide icon and latex formulas

This commit is contained in:
2026-04-25 17:04:31 +02:00
parent d1b44ad53e
commit 7268933a17
12 changed files with 78 additions and 21 deletions
+5
View File
@@ -0,0 +1,5 @@
export function stripHTML(html: string): string {
const div = document.createElement('div')
div.innerHTML = html
return div.textContent || div.innerText || ''
}