mirror of
https://github.com/open-webui/open-webui
synced 2024-11-15 04:53:54 +00:00
11 lines
274 B
Svelte
11 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 })}
|