Anki/ts/editable/MathjaxBlock.svelte
2021-09-15 13:32:31 +02:00

12 lines
316 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import { convertMathjax } from "./mathjax";
export let mathjax: string;
$: converted = convertMathjax(`\\(${mathjax}\\)`);
</script>
{@html converted}