Files
Atay-Makhzan/web_src/js/markup/math.js
T

38 lines
1.1 KiB
JavaScript
Raw Normal View History

import {displayError} from './common.js';
2022-09-13 17:33:37 +01:00
function targetElement(el) {
// The target element is either the current element if it has the
// `is-loading` class or the pre that contains it
2022-09-13 17:33:37 +01:00
return el.classList.contains('is-loading') ? el : el.closest('pre');
}
export async function renderMath() {
const els = document.querySelectorAll('.markup code.language-math');
if (!els.length) return;
const [{default: katex}] = await Promise.all([
import(/* webpackChunkName: "katex" */'katex'),
import(/* webpackChunkName: "katex" */'katex/dist/katex.css'),
]);
for (const el of els) {
const target = targetElement(el);
if (target.hasAttribute('data-render-done')) continue;
2022-09-13 17:33:37 +01:00
const source = el.textContent;
const displayMode = el.classList.contains('display');
const nodeName = displayMode ? 'p' : 'span';
2022-09-13 17:33:37 +01:00
try {
2022-11-17 02:04:09 +01:00
const tempEl = document.createElement(nodeName);
katex.render(source, tempEl, {
maxSize: 25,
maxExpand: 50,
displayMode,
2022-11-17 02:04:09 +01:00
});
target.replaceWith(tempEl);
2022-09-13 17:33:37 +01:00
} catch (error) {
displayError(target, error);
2022-09-13 17:33:37 +01:00
}
}
}