Hello there!
I've got the following code in my js:
pageReady() {
MathJax.tex2mmlPromise(##SOME LATEX CODE (like newcommand...)##).then( () => {
return MathJax.startup.defaultPageReady().then(() => {
MathJax.typesetPromise().then(() => {
##SOME FUNCTION##
});
});
});
}
I've use beta.7 and it worked liked charm.
Now with rc.4, this part of the code is broken, the console gives the following error:
Uncaught (in promise) TypeError: Cannot read properties of null (reading 'kind')
Am I doing something wrong or something has changed since beta.7?
I use Win 11 and Chrome.
Kind regards,
Balint