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"