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
When using Linkify.js to detect links in text, words with numbers as boundaries are incorrectly highlighted as links. For example, in the string "somefile.mp4", Linkify.js interprets "somefile.mp" as a link, omitting the final 4 character.
Actual behavior
linkifyHtml('some string with somefile.mp4 token')// "some string with <a href="somefile.mp">somefile.mp</a>4 token"
Expected behavior
Link should not be parsed
linkifyHtml('some string with somefile.mp4 token')// "some string with somefile.mp4 token"
The text was updated successfully, but these errors were encountered:
When using Linkify.js to detect links in text, words with numbers as boundaries are incorrectly highlighted as links. For example, in the string "somefile.mp4", Linkify.js interprets "somefile.mp" as a link, omitting the final 4 character.
Actual behavior
Expected behavior
Link should not be parsed
The text was updated successfully, but these errors were encountered: