Skip to content

camacho/markdown-magic-version-badge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Version badge plugin

Add version badge to markdown files via markdown-magic

Install

npm i markdown-magic markdown-magic-version-badge --save-dev

Adding the plugin

See example.js for usage.

const fs = require('fs');
const path = require('path');
const markdownMagic = require('markdown-magic');

const config = {
  transforms: {
    VERSIONBADGE: require('./index.js'),
  }
}

const markdownPath = path.join(__dirname, 'README.md');
markdownMagic(markdownPath, config);

Usage in markdown

npm

Options

  • pkg (nearest package.json file in file tree from the README by default) - path to closest pkg
  • link (links to npm by default) - a URL to link the button to (set to false to prevent link)
  • prefix (npm by default) - the prefix for the badge
  • color (green by default or orange if pre-release version) - any supported color

About

Print version badge in Markdown

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published