Borek Bernard
Borek Bernard
Just going to note that even a subset of this feature, which would be **checking local links** like `see [below](#another-heading)` would be quite useful.
That sounds good!
How does this work? When you run the regex, you just take the string from the textarea and pass it to a function, right? If there was a switch to...
Agree, no problem. You're doing great job with regex101!
Agree with @nhahtdh. How about something like this?  The "LF" would be a subtle dropdown allowing me to select between the three line endings.
I thought it's not possible to maintain CRLF in the text area and is a browser limitation, is it not? If you can maintain whatever line endings users pasted, it...
So who's doing the conversion of the text in my clipboard that contains CRLF line endings to a string that only contains LF? Is it: 1. The browser? 2. Some...
Oh so when I paste a string that contains CRLF characters in it, **CodeMirror** gets rid of whatever line endings there were and it doesn't tell you what those were?...
What if I want to test that the string uses CRLF? `\r` is not optional in our case. > I don't control that part of the code so I can...
I understood that CodeMirror automatically converts multiline strings to arrays of single-line strings. Then, you need to stitch it back together for regex evaluation. And I'm only proposing touching the...