Arno Gourdol
Arno Gourdol
OK, if the issue is knowing which version of MathML MathLive outputs, let's clarify this by saying it's MathML 3.
MathML confuses me. Between MathML 3, MathML 4 (with a Presentation and Content variants of each), MathML Core and the upcoming MathML Core w/ intents, not counting the actual MathML...
The `.visible` accessor should already return false if there are no menu items: ```ts get visible(): boolean { this.updateIfDirty(); return this._menuItems.some((x) => x.type !== 'divider' && x.visible); } ```
FYI, I don't see an attached test.html.
It's a script execution/timing issue. The `` tag on line 29 is executed before the `` on line 6 which has a `defer` attribute. Note that this may or may...
The `SwitchMode` command has two optional arguments. The first one is a "prefix" that is rendered in the current mode, and the second one is a "suffix" that is rendered...
This package is out of date and I don’t think it’s being maintained anymore. Using MathLive with React these days is pretty straightforward since it’s just a web component. That...
Note that this is fixed in the current version of MathLive (0.72.1).
I should also point out to https://gist.github.com/gerryfletch/09d9995725027fcbf060d0149441c3a8 which is a simpler example of using MathLive with React.