Jens Axel Søgaard
Jens Axel Søgaard
@nedredmond Is the Slack dead too? If not, how to find it?
Ping. If both irc and Slack are dead, is there an alternative forum or mailing list for MathQuill?
It might be a good idea to make a link to: https://bdtechconcepts.com/LaTeX-HTML-Converter-The-Lwarp-package.html#autosec-155 at this page: https://ctan.org/pkg/lwarp as well as in the README of this repo. I didnt' find the page...
@ericcervin I can't remember the details, but it seems `image` accepts 5 arguments, but maybe a scaling step is missing? If you want to look into it yourself, take a...
A note in the documentation on `dispatch-rules` might be a good idea.
Just a quick note to say, that in many situations it is simpler to redirect to the canonical url. With these dispatch rules ``` [("blog" "" (string-arg) ...) do-blog] ;...
I was looking at issues with the tag "good first contribution" and found this issue. If the feature is outside the scope of the MathJax vision, how can this be...
Thanks for the clarification.
Note that (letrec ([x x]) x) is used in other files too: grep -r undefined \* | grep letrec whalesong/cs019/private/sigs-patched.rkt:(define the-undefined-value (letrec ([x x]) x)) whalesong/cs019/teach-runtime.rkt:(define undefined (letrec ([x x])...
Also in kernel.rkt the function -undefined? could be replaced with: (require racket/undefined) (define (-undefined? x) (eq? x undefined))