1
0
Fork 0

Removed error for stylesheets.

This commit is contained in:
Luc Bijl 2023-12-29 17:21:37 +01:00
parent 357c045fbf
commit cebb902e83
4 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,5 @@
[dir="ltr"] .md-typeset blockquote {
border-left: .2rem solid rgba(68, 138, 255, 1);
background-color: rgba(34, 44, 63, 1);
color: rgb(240, 240, 240);
}

16
docs/nl/javascripts/mathjax.js Executable file
View file

@ -0,0 +1,16 @@
window.MathJax = {
tex: {
inlineMath: [["\\(", "\\)"]],
displayMath: [["\\[", "\\]"]],
processEscapes: true,
processEnvironments: true
},
options: {
ignoreHtmlClass: ".*|",
processHtmlClass: "arithmatex"
}
};
document$.subscribe(() => {
MathJax.typesetPromise()
})