Deploying to gh-pages from @ agdamsbo/freesearcheR@2588cf2b4f 🚀

This commit is contained in:
agdamsbo 2025-01-16 10:40:15 +00:00
commit 367892ec75
75 changed files with 25848 additions and 0 deletions

14
katex-auto.js Normal file
View file

@ -0,0 +1,14 @@
// https://github.com/jgm/pandoc/blob/29fa97ab96b8e2d62d48326e1b949a71dc41f47a/src/Text/Pandoc/Writers/HTML.hs#L332-L345
document.addEventListener("DOMContentLoaded", function () {
var mathElements = document.getElementsByClassName("math");
var macros = [];
for (var i = 0; i < mathElements.length; i++) {
var texText = mathElements[i].firstChild;
if (mathElements[i].tagName == "SPAN") {
katex.render(texText.data, mathElements[i], {
displayMode: mathElements[i].classList.contains("display"),
throwOnError: false,
macros: macros,
fleqn: false
});
}}});