Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ojroques/hugo-researcher.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Roques <olivier@oroques.dev>2020-09-22 23:32:49 +0300
committerOlivier Roques <olivier@oroques.dev>2020-09-22 23:32:49 +0300
commit597523d77f570a73f3116dac89542602117c12f9 (patch)
tree8fb7b0c664fd8006825b16ff86934621ab3cb137
parent7e2ed12a5abd188b1c26e91769d11e418fbac2b3 (diff)
Add script to enable inline math expression
-rw-r--r--layouts/partials/math.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/math.html b/layouts/partials/math.html
index 94a1ae3..19c0502 100644
--- a/layouts/partials/math.html
+++ b/layouts/partials/math.html
@@ -1,3 +1,17 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css" integrity="sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js" integrity="sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js" integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script>
+
+<!-- Script to enable inline math expressions -->
+<script>
+ document.addEventListener("DOMContentLoaded", function() {
+ renderMathInElement(document.body, {
+ delimiters: [
+ {left: "$$", right: "$$", display: true},
+ {left: "\\[", right: "\\]", display: true},
+ {left: "$", right: "$", display: false},
+ {left: "\\(", right: "\\)", display: false}
+ ]
+ });
+ });
+</script>