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 { convertMathjax } from "./mathjax";
|
|
|
|
|
|
|
|
export let mathjax: string;
|
2021-08-05 06:01:43 +02:00
|
|
|
export let block: boolean;
|
2021-08-04 04:21:35 +02:00
|
|
|
|
2021-08-07 19:33:01 +02:00
|
|
|
$: [converted, title] = convertMathjax(mathjax);
|
2021-08-04 18:57:34 +02:00
|
|
|
$: encoded = encodeURIComponent(converted);
|
2021-08-04 01:55:39 +02:00
|
|
|
</script>
|
|
|
|
|
2021-08-07 04:04:42 +02:00
|
|
|
<img
|
|
|
|
src="data:image/svg+xml,{encoded}"
|
|
|
|
class:block
|
|
|
|
alt="Mathjax"
|
2021-08-07 19:33:01 +02:00
|
|
|
{title}
|
2021-08-07 04:04:42 +02:00
|
|
|
data-anki="mathjax"
|
|
|
|
on:dragstart|preventDefault
|
|
|
|
/>
|
2021-08-04 05:13:42 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
2021-08-04 18:57:34 +02:00
|
|
|
img {
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
&.block {
|
|
|
|
display: block;
|
2021-08-04 21:01:35 +02:00
|
|
|
margin: auto;
|
2021-08-04 18:57:34 +02:00
|
|
|
}
|
2021-08-04 05:13:42 +02:00
|
|
|
}
|
|
|
|
</style>
|