You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
URLs should not container any of the following characters. isURL returns true for URLs that contain these characters. They should be encoded within the URL:
" < > # % { } | \ ^ ~ [ ] `
The text was updated successfully, but these errors were encountered:
@omegdadi -- I want some clarification on this. Don't we have URL's with # e.g. #652 (comment), and %20 (url-encoded space), etc. What's really the valid list of "unsafe" characters?
That's a good question. The hash (#) seems to be okay only separate the URL from a fragment identifier, which is not considered part of the URL (e.g. what if your URL has 2, is it valid?). An encoded space is okay, but if you're testing a URL that has a literal space in it, it should fail.
URLs should not container any of the following characters. isURL returns true for URLs that contain these characters. They should be encoded within the URL:
The text was updated successfully, but these errors were encountered: