![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | dist/ | 2 years ago | - | |
![]() | package.json | 2 years ago | 1.6K | 3e510ca test new git [كارل مبارك] |
![]() | CHANGELOG.md | 9 years ago | 255 | |
![]() | README.md | 9 years ago | 1.3K | d768d73 docs [كارل مبارك] |
![]() | index.js | 9 years ago | 2.8K | 3e510ca test new git [كارل مبارك] |
![]() | bower.json | 10 years ago | 522 | |
![]() | LICENSE | 10 years ago | 1.1K |
<ins>
tag plugin for markdown-it markdown parser.
v2.+ requires markdown-it
v5.+, see changelog.
++inserted++
=> <ins>inserted</ins>
Markup uses the same conditions as CommonMark emphasis.
node.js, browser:
npm install markdown-it-ins --save
bower install markdown-it-ins --save
var md = require('markdown-it')()
.use(require('markdown-it-ins'));
md.render('++inserted++') // => '<p><ins>inserted</ins></p>'
Differences in browser. If you load script directly into the page, without
package system, module will add itself globally as window.markdownitIns
.