33 lines
709 B
Svelte
33 lines
709 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 type: "inline" | "block" | "chemistry";
|
|
|
|
$: converted = convertMathjax(mathjax);
|
|
$: encoded = encodeURIComponent(converted);
|
|
</script>
|
|
|
|
<img
|
|
src="data:image/svg+xml,{encoded}"
|
|
class:block={type === "block"}
|
|
alt="Mathjax"
|
|
data-anki="mathjax"
|
|
data-mathjax={mathjax}
|
|
/>
|
|
|
|
<style lang="scss">
|
|
img {
|
|
vertical-align: middle;
|
|
|
|
&.block {
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
}
|
|
</style>
|