2023-04-17 06:10:22 -04:00
|
|
|
import {displayError} from './common.js';
|
2022-09-13 12:33:37 -04:00
|
|
|
|
|
|
|
function targetElement(el) {
|
2023-04-17 06:10:22 -04:00
|
|
|
// The target element is either the current element if it has the
|
|
|
|
// `is-loading` class or the pre that contains it
|
2022-09-13 12:33:37 -04: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) {
|
2023-04-17 06:10:22 -04:00
|
|
|
const target = targetElement(el);
|
|
|
|
if (target.hasAttribute('data-render-done')) continue;
|
2022-09-13 12:33:37 -04:00
|
|
|
const source = el.textContent;
|
2023-01-16 05:25:46 -05:00
|
|
|
const displayMode = el.classList.contains('display');
|
|
|
|
const nodeName = displayMode ? 'p' : 'span';
|
2022-09-13 12:33:37 -04:00
|
|
|
|
|
|
|
try {
|
2022-11-16 20:04:09 -05:00
|
|
|
const tempEl = document.createElement(nodeName);
|
|
|
|
katex.render(source, tempEl, {
|
|
|
|
maxSize: 25,
|
|
|
|
maxExpand: 50,
|
2023-01-16 05:25:46 -05:00
|
|
|
displayMode,
|
2022-11-16 20:04:09 -05:00
|
|
|
});
|
2023-04-17 06:10:22 -04:00
|
|
|
target.replaceWith(tempEl);
|
2022-09-13 12:33:37 -04:00
|
|
|
} catch (error) {
|
2023-04-17 06:10:22 -04:00
|
|
|
displayError(target, error);
|
2022-09-13 12:33:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|