https://github.com/markdown-it/markdown-it-ins
<ins> tag plugin for markdown-it markdown parser
https://github.com/markdown-it/markdown-it-ins
Last synced: 7 days ago
JSON representation
<ins> tag plugin for markdown-it markdown parser
- Host: GitHub
- URL: https://github.com/markdown-it/markdown-it-ins
- Owner: markdown-it
- License: mit
- Created: 2014-12-31T22:40:51.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-05T12:20:37.000Z (over 1 year ago)
- Last Synced: 2025-04-09T23:18:33.320Z (7 days ago)
- Language: JavaScript
- Homepage: https://markdown-it.github.io/
- Size: 29.3 KB
- Stars: 35
- Watchers: 6
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-marp-template - `markdown-it-ins`
- awesome-marp-template - `markdown-it-ins`
README
# markdown-it-ins
[](https://github.com/markdown-it/markdown-it-ins/actions)
[](https://www.npmjs.org/package/markdown-it-ins)
[](https://coveralls.io/r/markdown-it/markdown-it-ins?branch=master)> `` tag plugin for [markdown-it](https://github.com/markdown-it/markdown-it) markdown parser.
__v3.+ requires `markdown-it` v10.+, see changelog.__
`++inserted++` => `inserted`
Markup uses the same conditions as CommonMark [emphasis](http://spec.commonmark.org/0.15/#emphasis-and-strong-emphasis).
## Install
node.js, browser:
```bash
npm install markdown-it-ins --save
bower install markdown-it-ins --save
```## Use
```js
var md = require('markdown-it')()
.use(require('markdown-it-ins'));md.render('++inserted++') // => '
inserted
'
```_Differences in browser._ If you load script directly into the page, without
package system, module will add itself globally as `window.markdownitIns`.## License
[MIT](https://github.com/markdown-it/markdown-it-ins/blob/master/LICENSE)