Axel Hecht
Axel Hecht
Maybe https://linkify.js.org/docs/linkify-react.html is an option.
The syntax js parser in the playground also doesn't show the tab as part of the TextElement.
I was able to reproduce this upstream, and https://github.com/ianstormtaylor/slate/issues/4136 is exactly this, AFAICT. I don't know that we have a way to fix this, short of wrapping slate in an...
The kicker is that you need to start with an empty inbox. Then add a diacritic, add a char, move, delete, crash.
I did look back then, and it's a bug in the theme. But I also don't know if this is RTD's fault or ours. I had a look at their...
https://firefox-source-docs.mozilla.org/intl/locale.html#testing has some hints.
I don't think you need actual langpacks at all, you just need ```javascript Services.locale.availableLocales = ["de"].concat(Services.locale.availableLocales); Services.locale.requestedLocales = ["de"].concat(Services.locale.requestedLocales); ``` from https://firefox-source-docs.mozilla.org/intl/locale.html#testing-locale-switching (with some tweaks to the values). I didn't...
I think you listed out all the problems with the approach of trying to install the actual languages. Maybe add that language pack discovery might change at some point.
Probably also a bug in js syntax parser, and the runtime parser.
Yeah regarding `FluentWarning`. I'm not sure what the base class of `FluentWarning` should be. `RuntimeWarning` sounds like it, but the way they're used in `warnings` doesn't ring a bell right...