1.0.1 • Published 3 years ago

markdown-it-whatsapp v1.0.1

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

markdown-it-whatsapp

Build Status NPM version Coverage Status

Strikethrough (<strike>) tag plugin for markdown-it markdown parser.

v1.+ requires markdown-it v4.+, see changelog.

H~2~0 => H<strike>2</strike>O

Markup is based on pandoc definition. But nested markup is currently not supported.

Install

node.js, browser:

npm install markdown-it-whatsapp --save
bower install markdown-it-whatsapp --save

Use

var md = require("markdown-it")().use(require("markdown-it-whatsapp"));

md.render("H~2~0"); // => '<p>H<strike>2</strike>O</p>'

Differences in browser. If you load script directly into the page, without package system, module will add itself globally as window.markdownitWhatsapp.

License

MIT