linkify-string
===

[![npm version](https://badge.fury.io/js/linkify-string.svg)](https://www.npmjs.com/package/linkify-string)

[Linkify](https://linkify.js.org/) String Interface. Use `linkify-string` to detect URLs, email addresses and more in plain-text strings and wrap them with anchor `<a>` tags.

This function will ***not*** parse strings with HTML. Use one of the following instead, depending on your application:

* [`linkify-html`](../linkify-html/)
* [`linkify-element`](../linkify-element/)
* [`linkify-jquery`](../linkify-jquery/)


## Installation

Install from the command line with NPM

```
npm install linkifyjs linkify-string
```

Import into your JavaScript with `require`
```js
const linkifyStr = require('linkify-string');
```
or with ES modules

```js
import linkifyStr from 'linkify-string';
```

## Usage

[Read the full documentation](https://linkify.js.org/docs/linkify-string.html).

## License

MIT
