anki/ts/editable/Mathjax.svelte

42 lines
982 B
Svelte
Raw Normal View History

2021-08-04 01:55:39 +02:00
<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import { getContext } from "svelte";
import { nightModeKey } from "components/context-keys";
2021-08-04 01:55:39 +02:00
import { convertMathjax } from "./mathjax";
export let mathjax: string;
export let block: boolean;
/* have fixed fontSize for normal */
export const fontSize: number = 20;
2021-08-04 04:21:35 +02:00
const nightMode = getContext<boolean>(nightModeKey);
$: [converted, title] = convertMathjax(mathjax, nightMode, fontSize);
2021-08-07 22:23:18 +02:00
$: empty = title === "MathJax";
$: encoded = encodeURIComponent(converted);
2021-08-04 01:55:39 +02:00
</script>
<img
src="data:image/svg+xml,{encoded}"
class:block
2021-08-07 22:23:18 +02:00
class:empty
alt="Mathjax"
2021-08-07 19:33:01 +02:00
{title}
data-anki="mathjax"
on:dragstart|preventDefault
/>
2021-08-04 05:13:42 +02:00
<style lang="scss">
.block {
display: block;
margin: auto;
2021-08-04 05:13:42 +02:00
}
2021-08-07 22:23:18 +02:00
.empty {
vertical-align: sub;
}
2021-08-04 05:13:42 +02:00
</style>