1.0.0 • Published 4 years ago

markdown-it-cw v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

markdown-it-cw

Renders this markdown

__underline__

to this HTML

<u>underline</u>

This is based on markdown-it-underline and for use with ConnectWise REST API

Install

npm install markdown-it-cw

Usage

const markCw = require('markdown-it-cw');
const md = require('markdown-it')().use(markCw);

Example Usage:
console.log(md.renderInline('__underline__'));

Development

Add tests in test.js.

npm test
npm version [patch|minor|major]
npm publish