linkifyjs
linkifyjs copied to clipboard
JavaScript plugin for finding links in plain-text and converting them to HTML <a> tags.
Hi, when using linkify-html I've run into the following issue: **Example input:** `Foo/Bar Zoo/Zar` **Expected output:** same as the input (no change) **Observed output:** `Foo/Bar `
result: 'fasfafhttp://google.com' => 'fasfafhttp://' + google.com i want 'fasfafhttp://google.com' => 'fasfaf' + http://google.com: version 3.0.3
The Chinese character ':' looks like a colon + a space, but isn't. When our user, for example, types `Firstname:[email protected]` linkify incorrectly detects `Firstname:` as part of the email I...
is there an option to ignore not a tag but some class name for example. i just want not to linkify for example all `google.com`?
On the [XSS page](https://linkify.js.org/docs/xss.html), I see: > Other interfaces that work with the DOM, including linkify-element, linkify-jquery, and linkify-react, only apply to text-nodes. By design, they will not generate any...
I'm trying to figure out if I can write a plugin to link arbitrary words/phrases to specific destinations (I can load a json list from the server). Such a list...
I have a case for mention and hashtags to be linked internally to the app. I am using react router for handling internal links. Currently `linkifyjs/react` implementation will return `tagElement`...
Hi - thanks a lot for this library, seriously useful. So useful in fact that using the React component as an example, I've written a [Vue.js](https://vuejs.org/) functional component for linkify...
Linkifying a URL such as http://somedomain.com/admin/users?email={{ticket.requester.email}} results in http://somedomain.com/admin/users?email={{ticket.requester.email} (notice the missing one of the closing curly brace)
Is it possible to auto link a UNC path? So, in other words can we take a string like \\server\folder\file.txt And convert it to a file link? So, it would...