We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In section http://docs.mathjax.org/en/latest/web/typeset.html#handling-asynchronous-typesetting, shouln't
promise = promise.then(() => {code(); return MathJax.typesetPromise()})
rather read
promise = promise.then(() => {return MathJax.typesetPromise(code())})
to ensure that only certain DOM parts are re-rendered?
The text was updated successfully, but these errors were encountered:
Yes, you are correct. That should be corrected.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In section http://docs.mathjax.org/en/latest/web/typeset.html#handling-asynchronous-typesetting,
shouln't
rather read
to ensure that only certain DOM parts are re-rendered?
The text was updated successfully, but these errors were encountered: