[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]dist/2023-06-13 07:16 -  
[TXT]CHANGELOG.md2015-10-05 10:46 255  
[   ]LICENSE2014-12-31 22:37 1.1K 
[TXT]README.md2015-10-05 10:45 1.3Kd768d73 docs [كارل مبارك]
[   ]bower.json2014-12-31 23:52 513  
[   ]index.js2015-10-05 10:44 2.8K3e510ca test new git [كارل مبارك]
[   ]package.json2023-06-13 07:17 1.6K3e510ca test new git [كارل مبارك]
# markdown-it-mark

[![Build Status](https://img.shields.io/travis/markdown-it/markdown-it-mark/master.svg?style=flat)](https://travis-ci.org/markdown-it/markdown-it-mark)
[![NPM version](https://img.shields.io/npm/v/markdown-it-mark.svg?style=flat)](https://www.npmjs.org/package/markdown-it-mark)
[![Coverage Status](https://img.shields.io/coveralls/markdown-it/markdown-it-mark/master.svg?style=flat)](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)