![[ICO]](/icons/blank.gif) | Name | Last modified | Size | Description |
![[PARENTDIR]](/icons/back.gif) | Parent Directory | | - | |
![[DIR]](/icons/folder.gif) | dist/ | 2023-06-08 13:46 | - | |
![[TXT]](/icons/text.gif) | CHANGELOG.md | 2023-06-08 13:46 | 255 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![[ ]](/icons/unknown.gif) | bower.json | 2023-06-08 13:46 | 513 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![[ ]](/icons/unknown.gif) | LICENSE | 2023-06-08 13:46 | 1.1K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![[TXT]](/icons/text.gif) | README.md | 2023-06-08 13:46 | 1.3K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![[ ]](/icons/unknown.gif) | package.json | 2023-06-08 13:46 | 1.7K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![[ ]](/icons/unknown.gif) | index.js | 2023-06-08 13:46 | 2.8K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
# markdown-it-mark
[](https://travis-ci.org/markdown-it/markdown-it-mark)
[](https://www.npmjs.org/package/markdown-it-mark)
[](https://coveralls.io/r/markdown-it/markdown-it-mark?branch=master)
> `<mark>` tag plugin for [markdown-it](https://github.com/markdown-it/markdown-it) markdown parser.
__v2.+ requires `markdown-it` v5.+, see changelog.__
`==marked==` => `<mark>inserted</mark>`
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-mark --save
bower install markdown-it-mark --save
```
## Use
```js
var md = require('markdown-it')()
.use(require('markdown-it-mark'));
md.render('==marked==') // => '<p><mark>marked</mark></p>'
```
_Differences in browser._ If you load script directly into the page, without
package system, module will add itself globally as `window.markdownitMark`.
## License
[MIT](https://github.com/markdown-it/markdown-it-mark/blob/master/LICENSE)