mirror of
https://github.com/msberends/AMR.git
synced 2025-07-27 17:07:54 +02:00
Built site for AMR@2.1.1.9063: 640888f
This commit is contained in:
14
katex-auto.js
Normal file
14
katex-auto.js
Normal 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
|
||||
});
|
||||
}}});
|
Reference in New Issue
Block a user