- #1
- 4,812
- 3,088
@Greg Bernhardt: the color extension doesn't seem to be working. MathJax is downloading the colorv2 extension but in check-for-tex.js you have
I'm not sure if this will fix it* but I think it shoud be
(note the lower case "v" in line 3).
* Edit: experiments elsewhere indicate that this will fix it.
* Edit2: you could of course delete both the color and colorv2 keys to use the 'proper' MathJax V3 color module which works the same way does, but this would break colors in old posts under MathJax V2 (if there are any).
JavaScript:
autoload: {
color: [],
colorV2: ['color'],
}
JavaScript:
autoload: {
color: [],
colorv2: ['color'],
}
* Edit: experiments elsewhere indicate that this will fix it.
* Edit2: you could of course delete both the color and colorv2 keys to use the 'proper' MathJax V3 color module which works the same way
Last edited: