markdown-it-strikethrough-alt

tag for markdown-it markdown parser.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
markdown-it-strikethrough-alt
201.0.07 years ago7 years agoMinified + gzip package size for markdown-it-strikethrough-alt in KB

Readme

markdown-it-strikethrough-alt
Build Status NPM version Coverage Status
Alternative syntax strikethrough (<s>) tag plugin for markdown-it markdown parser.

v1.+ requires markdown-it v4.+, see changelog.
--Strikeout-- => <s>Strikeout</s>

Install

node.js, browser:
npm install markdown-it-strikethrough-alt --save
bower install markdown-it-strikethrough-alt --save

Use

var md = require('markdown-it')()
            .use(require('markdown-it-strikethrough-alt'));

md.render('--Strikeout--') // => '<s>Strikeout</s>'

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

License

MIT