mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 05:45:19 +00:00
10 lines
274 B
Svelte
10 lines
274 B
Svelte
<script lang="ts">
|
|
import katex from 'katex';
|
|
import 'katex/contrib/mhchem';
|
|
import 'katex/dist/katex.min.css';
|
|
|
|
export let content: string;
|
|
export let displayMode: boolean = false;
|
|
</script>
|
|
|
|
{@html katex.renderToString(content, { displayMode, throwOnError: false })}
|