vitaliy-bobrov / remarkable-extlink

Adds `target` and `rel` attributes to external links.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

remarkable-extlink 🔗

npm version npm

Remarkable plugin adds target and rel attributes for external links.

Installation

  • npm: npm install --save-dev remarkable-extlink

  • yarn: yarn add -D remarkable-extlink

Usage

const Remarkable = require('remarkable');
const extLink = require('remarkable-extlink');
const md = new Remarkable();

md
  .use(extlink, {
    host: 'my-host.com'
  });

Options

host {String}

Required

You site host name to detect external links.

target {String}

Target link attribute value, default _blank.

rel {String}

Rel link attribute value, default nofollow noreferrer noopener.

About

Adds `target` and `rel` attributes to external links.

License:MIT License


Languages

Language:JavaScript 100.0%