Kevin Barabash
Kevin Barabash
``` options.length = { thinmuskip: '', medmuskip: '', thickmuskip: '', arraycolsep: '', jot: '', ..., } ``` Is the implicit group really necessary? Since the commands listed above are all...
Does the effect of `setlength` terminate at the end of the group in which the `setlength` occurs? Why does the processing of `setlength` have to happen at the parent level?
#1070 is a pre-requisite for this. With it, all spaces will be inserted programmatically which means that we'll be able to change their values if `\thinmuskip` et al are ever...
Now that we have [Namespace.js](https://github.com/KaTeX/KaTeX/blob/master/src/Namespace.js) we could start on this. I think the tricky part will be tracking down all of those places where we should be using a particular...
This is something that we'd like to add but since this is a volunteer project and people are busy with their own things it probably won't happen until someone who's...
In addition to pulling them out into `macros.js`, we should also warn on the use of features that we are planning to deprecate similar to how React does. There should...
In a separate issue we discussed deprecation notices and decided it was more trouble than it was worth.
We also allow hex color codes with the leading `#` so ``` defineMacro("\\blue", "\\textcolor{6495ed}{#1}"); ``` would also work.
It would be nice if whatever we end up with worked with `$Pred`. Currently `$Pred` is typed in the following way: ``` $Pred => (x_0: any) => mixed $Pred =>...