@form8ion/remark-update-legacy-badge-markers

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

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@form8ion/remark-update-legacy-badge-markers
051.0.12 years ago3 years agoMinified + gzip package size for @form8ion/remark-update-legacy-badge-markers in KB

Readme

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

!Build Statusci-badgeci-link

Table of Contents

Installation Example Dependencies Verification

Usage


!MIT licenselicense-badgelicense-link !npmnpm-badgenpm-link !Try on RunKitrunkit-badgerunkit-link

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 WelcomePRs-badgePRs-link !Conventional Commitscommit-convention-badgecommit-convention-link !Commitizen friendlycommitizen-badgecommitizen-link !semantic-releasesemantic-release-badgesemantic-release-link !Renovaterenovate-badgerenovate-link

Dependencies

$ nvm install
$ npm install

Verification

$ npm test