Ron Kok

Results 47 comments of Ron Kok

The error occurs when `supsub` calls a `buildGroup()` on the base, because there is no group builder for an `internal` ParseType, aka an unexpanded macro. I tried to revise `buildGroup`...

@mbourne That's an interesting approach, though I haven't yet looked at it thoroughly. One small hitch is the KaTeX docs page re: browser installation. It still says that KaTeX runs...

This is good stuff. It should get recognized in the documentation. Suggest modification of `supported.md` file: In the _Other KaTeX Environments_ table, to the row labeled `gathered`, etc., insert a...

I had the same thing happen to me after a recent chromium update. For my own site, I changed the KaTeX [rendering options](https://katex.org/docs/options.html) to include `minRuleThickness: 0.06` and then I...

We tried an SVG once before. It is subject to anti-aliasing and some people reported [fuzzy edges or thick grey lines](https://github.com/KaTeX/KaTeX/issues/1173). I'm glad that the radical line worked on your...

KaTeX CSS already includes // Prevent Chrome from disappearing frac-lines, rules, etc. .mfrac .frac-line, .overline .overline-line, .underline .underline-line, .hline, .hdashline, .rule { min-height: 1px; } It will be interesting to...

Well, that's annoying. I'll turn in a PR that removes a `.toFixed(3)` from the code. That rounding changes the width of an SVG by a minute amount. It might be...

It takes more than this to get a good `\iiiint` function. The `symbols.js` module is written to call glyphs from the KaTeX fonts. But the KaTeX fonts do not contain...

I have a bad test in this PR. I wrote the Jest test: ``` it("should include a targetable HTML id that omits unsafe characters", () => { const built =...

MathJax's id has a prefix. It follows the form `mjx-eqn-`. I can write a prefix into this tag, too, if that is what others prefer.