Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

linkify-it

markdown-it37mMIT5.0.0TypeScript support: definitely-typed

Links recognition library with FULL unicode support

linkify, linkifier, autolink, autolinker

readme

linkify-it

CI NPM version Coverage Status Gitter

Links recognition library with FULL unicode support. Focused on high quality link patterns detection in plain text.

Demo

Why it's awesome:

  • Full unicode support, with astral characters!
  • International domains support.
  • Allows rules extension & custom normalizers.

Install

npm install linkify-it --save

Browserification is also supported.

Usage examples

Example 1
import linkifyit from 'linkify-it';
const linkify = linkifyit();

// Reload full tlds list & add unofficial `.onion` domain.
linkify
  .tlds(require('tlds'))          // Reload with full tlds list
  .tlds('onion', true)            // Add unofficial `.onion` domain
  .add('git:', 'http:')           // Add `git:` protocol as "alias"
  .add('ftp:', null)              // Disable `ftp:` protocol
  .set({ fuzzyIP: true });        // Enable IPs in fuzzy links (without schema)

console.log(linkify.test('Site github.com!'));  // true

console.log(linkify.match('Site github.com!')); // [ {
                                                //   schema: "",
                                                //   index: 5,
                                                //   lastIndex: 15,
                                                //   raw: "github.com",
                                                //   text: "github.com",
                                                //   url: "http://github.com",
                                                // } ]
Example 2. Add twitter mentions handler
linkify.add('@', {
  validate: function (text, pos, self) {
    const tail = text.slice(pos);

    if (!self.re.twitter) {
      self.re.twitter =  new RegExp(
        '^([a-zA-Z0-9_]){1,15}(?!_)(?=$|' + self.re.src_ZPCc + ')'
      );
    }
    if (self.re.twitter.test(tail)) {
      // Linkifier allows punctuation chars before prefix,
      // but we additionally disable `@` ("@@mention" is invalid)
      if (pos >= 2 && tail[pos - 2] === '@') {
        return false;
      }
      return tail.match(self.re.twitter)[0].length;
    }
    return 0;
  },
  normalize: function (match) {
    match.url = 'https://twitter.com/' + match.url.replace(/^@/, '');
  }
});

API

API documentation

new LinkifyIt(schemas, options)

Creates new linkifier instance with optional additional schemas. Can be called without new keyword for convenience.

By default understands:

  • http(s)://... , ftp://..., mailto:... & //... links
  • "fuzzy" links and emails (google.com, foo@bar.com).

schemas is an object, where each key/value describes protocol/rule:

  • key - link prefix (usually, protocol name with : at the end, skype: for example). linkify-it makes sure that prefix is not preceded with alphanumeric char.
  • value - rule to check tail after link prefix
    • String - just alias to existing rule
    • Object
      • validate - either a RegExp (start with ^, and don't include the link prefix itself), or a validator function which, given arguments text, pos, and self, returns the length of a match in text starting at index pos. pos is the index right after the link prefix. self can be used to access the linkify object to cache data.
      • normalize - optional function to normalize text & url of matched result (for example, for twitter mentions).

options:

  • fuzzyLink - recognize URL-s without http(s):// head. Default true.
  • fuzzyIP - allow IPs in fuzzy links above. Can conflict with some texts like version numbers. Default false.
  • fuzzyEmail - recognize emails without mailto: prefix. Default true.
  • --- - set true to terminate link with --- (if it's considered as long dash).

.test(text)

Searches linkifiable pattern and returns true on success or false on fail.

.pretest(text)

Quick check if link MAY BE can exist. Can be used to optimize more expensive .test() calls. Return false if link can not be found, true - if .test() call needed to know exactly.

.testSchemaAt(text, name, offset)

Similar to .test() but checks only specific protocol tail exactly at given position. Returns length of found pattern (0 on fail).

.match(text)

Returns Array of found link matches or null if nothing found.

Each match has:

  • schema - link schema, can be empty for fuzzy links, or // for protocol-neutral links.
  • index - offset of matched text
  • lastIndex - index of next char after mathch end
  • raw - matched text
  • text - normalized text
  • url - link, generated from matched text

.matchAtStart(text)

Checks if a match exists at the start of the string. Returns Match (see docs for match(text)) or null if no URL is at the start. Doesn't work with fuzzy links.

.tlds(list[, keepOld])

Load (or merge) new tlds list. Those are needed for fuzzy links (without schema) to avoid false positives. By default:

  • 2-letter root zones are ok.
  • biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф are ok.
  • encoded (xn--...) root zones are ok.

If that's not enough, you can reload defaults with more detailed zones list.

.add(key, value)

Add a new schema to the schemas object. As described in the constructor definition, key is a link prefix (skype:, for example), and value is a String to alias to another schema, or an Object with validate and optionally normalize definitions. To disable an existing rule, use .add(key, null).

.set(options)

Override default options. Missed properties will not be changed.

License

MIT

changelog

5.0.0 / 2023-12-01

  • Rewrite to ESM.

4.0.1 / 2022-05-02

  • Fix http:// incorrectly returned as a link by matchStart.

4.0.0 / 2022-04-22

  • Add matchAtStart method to match full URLs at the start of the string.
  • Fixed paired symbols ((), {}, "", etc.) after punctuation.
  • --- option now affects parsing of emails (e.g. `user@example.com---`)

3.0.3 / 2021-10-01

  • Fixed #98. Don't count ; at the end of link (when followed with space).

3.0.2 / 2020-05-20

  • Proper fix for #54. Allow multiple ! in links (but not at the end).

3.0.1 / 2020-05-19

  • Reverted #54 fix (allowed multiple ! in links), and added collision sample.

3.0.0 / 2020-05-19

  • Allow unlimited . inside link params, #81. This should not be breaking, but bumped version for sure.
  • Allow ..& in params, #87.
  • Allow multiple ! in links, #54.
  • Deps bump.
  • Rewrite build scripts.

2.2.0 / 2019-07-12

  • Improved quoted email detect (disable " at email start), #72.
  • Fix some google links (allow more consecutive .), #66.

2.1.0 / 2018-11-27

  • Allow -- (and more dashes) in domain names, #63.

2.0.3 / 2016-12-09

  • Process (asian vertical pipe 0xFF5C) as valid text separator.

2.0.2 / 2016-10-15

  • Allow dashes in local domains, #43.

2.0.1 / 2016-09-28

  • Restrict user:pass@... content - prohibit "()[]" chars in auth, #41.

2.0.0 / 2016-06-22

  • --- no longer terminates link. Use option { '---': true } to return old behaviour.
  • .onCompile() hook to modify base regexp constants.
  • Allow foo'-bar in path

1.2.4 / 2016-06-03

  • Consider < & > as invalid in links.
  • Support links in lt/gt braces: <user@domain.com>, <http://example.com>.

1.2.3 / 2016-05-31

  • Allow digits in local domains, #36.
  • Restrict user/pass (prohibit [@/] chars) to avoid wrong domain fetch.
  • More restrictions for protocol-transparent links. Don't allow single-level (local) domains, except '//localhost', #19.

1.2.2 / 2016-05-30

  • Security fix: due problem in Any class regexp from old unicode-7.0.0 package (used in uc-micro), hang happend with astral char patterns like 😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡 .com if fuzzy options used. New installs will use fixed uc-micro automatically. Old installs need to be updated. #36.
  • Unicode rules updated to 8.+ version.

1.2.1 / 2016-04-29

  • Fix detect email after opening parenthesis: (my@email.com), #32.

1.2.0 / 2015-06-29

  • Allow dash at the end of url, thanks to @Mumakil.

1.1.1 / 2015-06-09

  • Allow ".." in link paths.

1.1.0 / 2015-04-21

  • Added options to control fuzzy links recognition (fuzzyLink: true, fuzzyEmail: true, fuzzyIP: false).
  • Disabled IP-links without schema prefix by default.

1.0.1 / 2015-04-19

  • More strict default 2-characters tlds handle in fuzzy links, to avoid false positives for node.js, io.js and so on.

1.0.0 / 2015-03-25

  • Version bump to 1.0.0 for semver.
  • Removed Cf class from whitespace & punctuation sets (#10).
  • API change. Exported regex names renamed to reflect changes. Update your custom rules if needed:
    • src_ZPCcCf -> src_ZPCc
    • src_ZCcCf -> src_ZCc

0.1.5 / 2015-03-13

  • Fixed special chars handling (line breaks).
  • Fixed demo permalink encode/decode.

0.1.4 / 2015-03-12

  • Allow .. and ... inside of link paths (#9). Useful for github links with commit ranges.
  • Added .pretest() method for speed optimizations.
  • Autogenerate demo sample from fixtures.

0.1.3 / 2015-03-11

  • Maintenance release. Deps update.

0.1.2 / 2015-02-26

  • Fixed blockquoted links (some symbols exclusions), thanks to @MayhemYDG.
  • Fixed demo permalinks, thanks to @MayhemYDG.

0.1.1 / 2015-02-22

  • Moved unicode data to external package.
  • Demo permalink improvements.
  • Docs update.

0.1.0 / 2015-02-12

  • First release.