2.0.0 • Published 10 months ago

@form8ion/remark-update-legacy-badge-markers v2.0.0

Weekly downloads
991
License
MIT
Repository
github
Last release
10 months ago

remark-update-legacy-badge-markers

remark plugin to update legacy badge markers to the modern zone convention

Node CI Workflow Status

Table of Contents

Usage

MIT license npm Try on RunKit node

Installation

$ npm install @form8ion/remark-update-legacy-badge-markers --save-prod

Example

Import

import fs from 'fs';
import {remark} from 'remark';
import updateLegacyBadgeMarkers from '@form8ion/remark-update-legacy-badge-markers';

Execute

remark()
  .use(updateLegacyBadgeMarkers)
  .process(
    `# project-name

<!-- status badges -->

<!-- consumer badges  -->

<!-- contribution badges -->
`,
    (err, file) => {
      fs.writeFileSync(`${process.cwd()}/README.md`, `${file}`);
    }
  );

Contributing

PRs Welcome Conventional Commits Commitizen friendly semantic-release Renovate

Dependencies

$ nvm install
$ npm install

Verification

$ npm test