Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

b12-archive/markdown-code-hashtags

Repository files navigation

Coveralls – test coverage Travis – build status David – status of dependencies Stability: stable Code style: airbnb

 

markdown-code-hashtags

Convert every #hashtag to a link.

Helpful when writing docs in markdown.





 

Installation

$ npm install markdown-code-hashtags

 

Usage

const hashtags = require('markdown-code-hashtags');

hashtags(
  'Look! A `#hashtag`!'
);
//» 'Look! A [`#hashtag`](#hashtag)!'

You can also configure the thing:

const hashtags = require('markdown-code-hashtags').custom;

hashtags({hash: '@', swallow: true, urlBase: '/custom/'},
  'Got a different `@link` here.'
);
//» 'Got a different [`link`](/custom/link) here.'
 

See also

  • erase – Remove part of a markdown/HTML document.
 

License

MIT © Studio B12 GmbH

About

Convert every `#hashtag` to a link.

Resources

License

Stars

Watchers

Forks

Packages

No packages published