From cebb902e838869827c59164aab3d6e39317057c9 Mon Sep 17 00:00:00 2001 From: Luc Date: Fri, 29 Dec 2023 17:21:37 +0100 Subject: [PATCH] Removed error for stylesheets. --- docs/{ => en}/javascripts/mathjax.js | 0 docs/en/stylesheets/extra.css | 5 +++++ docs/nl/javascripts/mathjax.js | 16 ++++++++++++++++ docs/{ => nl}/stylesheets/extra.css | 0 4 files changed, 21 insertions(+) rename docs/{ => en}/javascripts/mathjax.js (100%) create mode 100644 docs/en/stylesheets/extra.css create mode 100755 docs/nl/javascripts/mathjax.js rename docs/{ => nl}/stylesheets/extra.css (100%) diff --git a/docs/javascripts/mathjax.js b/docs/en/javascripts/mathjax.js similarity index 100% rename from docs/javascripts/mathjax.js rename to docs/en/javascripts/mathjax.js diff --git a/docs/en/stylesheets/extra.css b/docs/en/stylesheets/extra.css new file mode 100644 index 0000000..5f0e5f1 --- /dev/null +++ b/docs/en/stylesheets/extra.css @@ -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); +} \ No newline at end of file diff --git a/docs/nl/javascripts/mathjax.js b/docs/nl/javascripts/mathjax.js new file mode 100755 index 0000000..e648674 --- /dev/null +++ b/docs/nl/javascripts/mathjax.js @@ -0,0 +1,16 @@ +window.MathJax = { + tex: { + inlineMath: [["\\(", "\\)"]], + displayMath: [["\\[", "\\]"]], + processEscapes: true, + processEnvironments: true + }, + options: { + ignoreHtmlClass: ".*|", + processHtmlClass: "arithmatex" + } + }; + + document$.subscribe(() => { + MathJax.typesetPromise() + }) \ No newline at end of file diff --git a/docs/stylesheets/extra.css b/docs/nl/stylesheets/extra.css similarity index 100% rename from docs/stylesheets/extra.css rename to docs/nl/stylesheets/extra.css