markdown-it-cw
v1.0.0
Published
Renders __underline__ to <u>underline</u>
Downloads
6
Maintainers
Readme
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