blob: f33518910654e208f9d60e3eb3b4c20b21675265 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
import katex from 'katex';
const { formula = '' } = Astro.props;
const html = katex.renderToString(formula, {throwOnError: false});
---
<div class="text-center">
<span set:html={html} class="" />
</div>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.css"
integrity="sha384-WsHMgfkABRyG494OmuiNmkAOk8nhO1qE+Y6wns6v+EoNoTNxrWxYpl5ZYWFOLPCM"
crossorigin="anonymous"
/>
|