2.1.0 • Published 1 year ago

transform-markdown-links v2.1.0

Weekly downloads
2,109
License
MIT
Repository
github
Last release
1 year ago

transform-markdown-links

Tests npm

Transform the links in a Markdown file

Transforms the URLs of links in a Markdown file using a transform function.

Installation

npm install transform-markdown-links

Usage

import transformLinks from 'transform-markdown-links';

const input = 'This [link](page.md) will be transformed.';

transformLinks(input, (link, text) => link + '?hooray');
// => 'This [link](page.md?hooray) will be transformed.'

API

transformLinks(input, transform)

Transform the links in a Markdown string using a transform function. Returns a String of Markdown with transformed links.

  • input (String): Markdown input.
  • transform (Function): Callback to transform each link. Should return a string to change the link's URL, or undefined to leave it as-is. Gets these parameters:
    • link (String): URL of the link.
    • text (String): text of the link.

Local Development

git clone https://github.com/gakimball/transform-markdown-links
cd transform-markdown-links
npm install
npm test

License

MIT © Geoff Kimball