diff options
Diffstat (limited to 'layouts/shortcodes/katex.html')
-rw-r--r-- | layouts/shortcodes/katex.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/shortcodes/katex.html b/layouts/shortcodes/katex.html new file mode 100644 index 0000000..5807c50 --- /dev/null +++ b/layouts/shortcodes/katex.html @@ -0,0 +1,12 @@ +{{ if not (.Page.Scratch.Get "katex") }} +<!-- Include katext only first time --> +<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.0/dist/katex.min.css" integrity="sha384-BdGj8xC2eZkQaxoQ8nSLefg4AV4/AwB3Fj+8SUSo7pnKP6Eoy18liIKTPn9oBYNG" crossorigin="anonymous"> +<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.0/dist/katex.min.js" integrity="sha384-JiKN5O8x9Hhs/UE5cT5AAJqieYlOZbGT3CHws/y97o3ty4R7/O5poG9F3JoiOYw1" crossorigin="anonymous"></script> +<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.0/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script> +{{ .Page.Scratch.Set "katex" true }} +{{ end }} + +<p class="katex{{ with .Get "class" }} {{ . }}{{ end }}"> + {{ .Inner }} +</p> + |