initial commit

This commit is contained in:
Michael Weinold
2025-05-30 18:48:21 +02:00
commit d0ddf8249a
14 changed files with 210 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// https://squidfunk.github.io/mkdocs-material/reference/math/#katex
document$.subscribe(({ body }) => {
renderMathInElement(body, {
delimiters: [
{ left: "$$", right: "$$", display: true },
{ left: "$", right: "$", display: false },
{ left: "\\(", right: "\\)", display: false },
{ left: "\\[", right: "\\]", display: true }
],
})
})