You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/ui/components/katex/katex.page.js

17 lines
495 B
JavaScript

5 years ago
import { AutoloadPage } from 'vj/misc/PageLoader';
import 'katex/dist/katex.min.css';
import './katex.styl';
const katexPage = new AutoloadPage('katexPage', () => {
import('katex/dist/contrib/auto-render.min.js').then((renderKatex) => {
function runKatex($containers) {
$containers.get().forEach(container => renderKatex(container));
}
runKatex($('.typo'));
$(document).on('vjContentNew', e => runKatex($(e.target).find('.typo')));
});
});
export default katexPage;