Jesse Luoto
Jesse Luoto
@erdemguven looks good! If you want to do a PR, you can find the html code at the `gh-pages` branch :)
Hey, thanks for adding this issue How can I reproduce this bug? On which browser?
On chrome and firefox at least äöåü seems to work just fine
Hey. I tested with the following process with windows 7 + chrome (latest) and could not reproduce the bug: # How I tried to reproduce 1. Open notepadlet 2. Write...
My best guess currently is, that your web server sets charset header that conflicts with the charset that's set when you save the file. There's a couple of things you...
In addition to the number 2 in the previous comment: This is a good template that I've used to describe the issue: # How to reproduce: 1. Write all necessary...
@stefanibus I understand from the forum that there is an issue with btoa/atob with characters outside `Latin-1` range. I've opened the issue #6 to check it out, thanks for pointing...
Have you tried using ChatGPT? 3.5 seems to know the context pretty well, maybe 4 would be even better, especially if you could give the documentation as context 🤔 
Named groups is something that is missing in at least JavaScript, so this could potentially be an issue with cross-language support. - If we'd keep track of the groups' indexes...
I was thinking more of like the Python implementation: ``` VerEx(). start_of_line() .group("protocol", VerEx() .find('http') .maybe('s') .find('://') ) .group("domain", VerEx() .maybe('www.') .anything_but(' ') ) .end_of_line() ``` The real problem is,...