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
Very nice lib, i looked at the code and it seems to me there is :
a typo error in a comment for the regex explanation line 154 :
[^\s()<>]+ # Run of non-space, non-()<>
the "-" character is no more in the regex, so it should be removed from the comment.
line 167 there is a check to verify if there is a need to add an "http" value in the link. I think you should add an "~i" value to avoid the case sensitive problem. For example if someone add a text "hTTp://www.xxx.xxx" the http will be added because your regex is case sensitive.
Keepup the good work.
The text was updated successfully, but these errors were encountered:
Hi,
Very nice lib, i looked at the code and it seems to me there is :
[^\s()<>]+ # Run of non-space, non-()<>
the "-" character is no more in the regex, so it should be removed from the comment.
Keepup the good work.
The text was updated successfully, but these errors were encountered: