Firefox support?
As seen here: https://www.reddit.com/r/firefox/comments/fc0c3p/latex_in_firefox/
Yes, this would be extremely useful!
There is a katex-with-slack addon for Firefox by @sophiehuiberts
I'm wondering, if that would work universally if you just changed the url regex here? https://github.com/sophiehuiberts/katex-with-slack/blob/master/manifest.json#L3
There is a fair bit of Slack-specific code in https://github.com/sophiehuiberts/katex-with-slack/blob/master/glue.js The reason I used this approach is that katex doesn't like it when you re-run its latex parsing on the entire page every second. I vaguely recall leaking memory with that approach.
There is a fair bit of Slack-specific code in sophiehuiberts/katex-with-slack@
master/glue.js The reason I used this approach is that katex doesn't like it when you re-run its latex parsing on the entire page every second. I vaguely recall leaking memory with that approach.
I see! Thank you for the quick response!