Skip to content

markdown-it plugin for replacing links (image & text) in the markdown document.

Notifications You must be signed in to change notification settings

GerHobbelt/markdown-it-replace-link

 
 

Repository files navigation

markdown-it-replace-link

Build Status NPM version Coverage Status

markdown-it plugin for replacing links (image & text) in the markdown document.

Usage

Enable plugin

var md = require('markdown-it')({
    replaceLink: function (link, env) {
        return link + "?c=" + Date.now();
    }
}).use(require('markdown-it-replace-link')); // <-- this use(package_name) is required

Example

[Hello](test)

and use this

var md = require('markdown-it')({
    replaceLink: function (link, env) {
        return "http://me.com/" + link;
    }
}).use(require('markdown-it-replace-link'));

This will result in the link prefixed with the http://me.com/ like:

<p><a href="http://me.com/test">Hello</a></p>

Both images and html links will be processed.

If using this in a browser, the script will create a variable window.markdownitReplaceLink that can be passed to .use().

Testing

To run the tests use:

npm run test

About

markdown-it plugin for replacing links (image & text) in the markdown document.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 64.1%
  • Makefile 35.9%