Davide P. Cervone
Davide P. Cervone
Your commands work properly for me. What OS are you using, and what command shell? it may be that the `^` has a special meaning in your shell, and is...
It is not clear what your use case really is. Are you trying to set the background for ALL the SVG elements created by MathJax? If so, you can use...
If you do ``` shell npm list mathjax ``` you should get the version of MathJax that you have installed. Because the `package.json` file has the version set at `^2.7.2`,...
The mathjax-node `typeset()` command takes a TeX string as its input, not arbitrary text containing math delimiters an other text. So when you do something like ``` javascript mathjax.typeset({ math:...
Are the underscores really supposed to be part of the math expression? Or should that be part of the surrounding HTML? You need to process the math separately from plain...
Thanks for reporting this issue. You are correct that the speech-rule-engine is the culprit, here, and should be transpired for the `es5` directory. One work-around for now would be to...
I take it back. While the resulting file doesn't include class definitions, it also doesn't work in the browser. So I'll have to look into it further.
OK, it looks like you also need to ``` shell npm install regenerator-runtime ``` and change https://github.com/mathjax/MathJax-src/blob/8565f9da973238e4c9571a86a4bcb281b1d98d9b/components/webpack.common.js#L163 to ``` javascript entry: ['regenerator-runtime/runtime.js', path.join(dir, name + '.js')], ``` then it seems...
@OscarTheFabulous, did you try the suggestions that I made above? I gave a work-around in my comments (but be sure to read them all, as they are spread over several)....
The MathJax-Fonts repository will be made public after the v4.0.0 official release. It is not currently in shape to be made available, as the structure is changing, the tools it...