ui/no-dark-mode extension has been added to disable MathJax's dark-mode color scheme for those pages that don't implement a dark-mode color set.<button> element, for example, will allow the button to receive the click event when you click on the math.Those who are using MathJax from a CDN like https://cdn.jsdelivr.net/npm/mathjax@4 should receive the new version automatically, though it may take some time to propagate through the CDN network. You may also have a cached version in your browser, so may need to either clear the browser cache, or relaunch your browser (or both) in order to get the latest version (the cached version should expire in about a week, depending on the CDN being used).
MathJax version 4.1.1 will load its font using the 4.1.1 version number explicitly if they are loaded from cdn.jsdelicr.net, but earlier versions of MathJax will load the latest version of the fonts. That means that if you are still using v4.1.0, you may see a warning message in the browser's developer's console indicating that the fonts are version 4.1.1 while MathJax is at v4.1.0. It is safe to ignore that message, and you can set versionWarnings to false in the loader section of your MathJax configuration to prevent them. Alternatively, you can set the mathjax-newcm path to include a specific version, as in
MathJax = {
loader: {
paths: {
'mathjax-newcm': 'https://cdn.jsdelivr.net/npm/@mathjax/mathjax-n...@4.1.0',
}
}
}
You can set similar paths for other fonts or font extensions if you need to as well.
As always, you may report issues in the MathJax issue tracker for v4.