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

26 lines
617 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;
export let block: boolean;
$: converted = convertMathjax(mathjax);
$: encoded = encodeURIComponent(converted);
</script>
<img src="data:image/svg+xml,{encoded}" class:block alt="Mathjax" data-anki="mathjax" />
<style lang="scss">
img {
vertical-align: middle;
&.block {
display: block;
margin: auto;
}
}
</style>