Eli Black
Eli Black
I've been playing around with this some more, and it looks like a cleaner way is to fire the keyup events when the browser window loses focus: ```js useEffect(() =>...
It looks like this also happens with Chinese usernames, e.g. @大天犬木: 
Another edge case: usernames that are email addresses can't be tagged, because they contain an `@` symbol. For example, [email protected] can't be tagged.
Also, usernames with spaces. e.g. `Hello World`
@cathyhlshih Yes, my site allows non-ASCII usernames, and people log into my Flarum forum via a SSO-like system. One possible solution would be for Flarum to handle non-ASCII usernames by...
I'm running into something similar. In my case, I don't want to use the nested routes feature, so I construct my nested routes manually: **main.js** ```js ``` **user.js** ```js const...
For what it's worth, it looks like `raviger` also has this behaviour: https://github.com/kyeotic/raviger/issues/152
The tags are added automatically, so they won't show up in "View Page Source". You need to use the developer console to see them :)
I'm looking for this, too :) At the moment, I'm just hooking Quill up to a detached DOM node: ```js const quill = new Quill(document.createElement('div')); quill.setContents(delta); console.log(quill.getSemanticHTML()); ```
https://github.com/slab/quill/issues/3193 also mentions the https://www.npmjs.com/package/quill-delta-to-html package for this, which looks interesting.