Files
hugo-theme-stack/layouts/partials/article/components/math.html
T

15 lines
602 B
HTML
Raw Normal View History

2021-02-12 13:21:43 +01:00
{{- partial "helper/external" (dict "Context" . "Namespace" "KaTeX") -}}
2020-12-24 10:57:01 +01:00
<script>
2021-02-12 13:21:43 +01:00
window.addEventListener("DOMContentLoaded", () => {
const mainArticleElement = document.querySelector(".main-article");
renderMathInElement(mainArticleElement, {
2020-12-24 10:57:01 +01:00
delimiters: [
{ left: "$$", right: "$$", display: true },
{ left: "$", right: "$", display: false },
{ left: "\\(", right: "\\)", display: false },
{ left: "\\[", right: "\\]", display: true }
],
ignoredClasses: ["gist"]
2021-02-12 13:21:43 +01:00
});})
</script>