linkifyjs icon indicating copy to clipboard operation
linkifyjs copied to clipboard

JavaScript plugin for finding links in plain-text and converting them to HTML <a> tags.

Results 91 linkifyjs issues
Sort by recently updated
recently updated
newest added

`linkify.find()` currently doesn't allow overriding the default options.

feature
pending-merge

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 ``` //...

i18n
pending-merge

Using linkifyHtml on an escaped string produces incorrect output. EG: linkifyHtml() called on the string '&quot;http://google.com&quot;' produces the following output: '&quot;http://google.com&quot;' which renders as "http://google.com"; The call in the code...

bug
html
pending-merge

``` 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 =...

docs
react
pending-merge

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...

html
pending-merge

#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...

bug
pending-merge

In many JS texts treatments, links html are encoded like : `https:&#x2F;&#x2F;html5-chat.com&#x2F;` Any idea on how handle these cases ?

html
pending-merge

Support for links like \\share\directory\file.pdf and file:///\\share\directory\file.pdf would be nice (especially for use in a business context).

custom protocol
pending-merge

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...

custom protocol

I guess IP addresses like http://143.345.33.44:8181 should also be supported. Are you guys planning for that?

plugin