Files
AlgebraInLean/static/math.js
T
2026-08-11 07:23:56 +02:00

8 lines
365 B
JavaScript

document.addEventListener("DOMContentLoaded", () => {
for (const m of document.querySelectorAll(".math.inline")) {
katex.render(m.textContent, m, {throwOnError: false, displayMode: false});
}
for (const m of document.querySelectorAll(".math.display")) {
katex.render(m.textContent, m, {throwOnError: false, displayMode: true});
}
});