mirror of
https://github.com/open-webui/open-webui
synced 2024-11-15 13:03:53 +00:00
10 lines
238 B
Svelte
10 lines
238 B
Svelte
|
<script lang="ts">
|
||
|
import katex from 'katex';
|
||
|
import 'katex/contrib/mhchem';
|
||
|
|
||
|
export let content: string;
|
||
|
export let displayMode: boolean = false;
|
||
|
</script>
|
||
|
|
||
|
{@html katex.renderToString(content, { displayMode, throwOnError: false })}
|