linkifyjs
linkifyjs copied to clipboard
JavaScript plugin for finding links in plain-text and converting them to HTML <a> tags.
`linkify.find()` currently doesn't allow overriding the default options.
When using find method to detect URL, I found that the detection results were different in v3 when there were no spaces before and after the URL. v2 ``` //...
Using linkifyHtml on an escaped string produces incorrect output. EG: linkifyHtml() called on the string '"http://google.com"' produces the following output: '"http://google.com"' which renders as "http://google.com"; The call in the code...
``` js import Linkify from "linkify-react"; import mention from "linkifyjs/plugins/mention" const linkifyOptions = { format: function (value, type) { if (type === "url") { let re1 = /http(s)?:\/\//; value =...
The linkifyHtml does not work fine with some special characters. We get a text from our database and using linkifyHtml we are getting problems with some characters like - or...
#33 fixed an issue with missed urls using '@' but it seems to have affected other content. For example, linkify will pick up "@some.username" as a link. It only seems...
In many JS texts treatments, links html are encoded like : `https://html5-chat.com/` Any idea on how handle these cases ?
Support for links like \\share\directory\file.pdf and file:///\\share\directory\file.pdf would be nice (especially for use in a business context).
Hello. First I want to say good job on this plugin. I am making a plugin that will detect custom format, something in the lines of "keyword://test/test1/test2". I managed to...
I guess IP addresses like http://143.345.33.44:8181 should also be supported. Are you guys planning for that?