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.
cugoj-ng-client/src/utils/mathjax.ts

13 lines
352 B
TypeScript

import "mathjax/es5/tex-svg-full";
export function mathjax_load() {
if (!window.MathJax.config.tex.inlineMath) {
window.MathJax.config.tex.inlineMath = [
["$", "$"],
["\\(", "\\)"],
];
window.MathJax.startup.getComponents();
}
}
export function mathjax_typeset() {
window.MathJax.typeset();
}