linkifyjs icon indicating copy to clipboard operation
linkifyjs copied to clipboard

how to avoid detecting as link that start with 123http?

Open zuizuihao opened this issue 2 years ago • 0 comments

when I test "123http://google.com", but in our scenario, this should not be recognized as a link. the result better to be 123http://google.com. any solution to avoid detect as link?

var htmlLinkify = linkifyHtml("123http://google.com");
console.log(htmlLinkify); //123<a href="http://google.com">http://google.com</a>

zuizuihao avatar Dec 12 '23 06:12 zuizuihao