<abbr> tag for markdown-it markdown parser.
npm install markdown-it-abbr


> Abbreviation () tag plugin for markdown-it markdown parser.
__v1.+ requires markdown-it v4.+, see changelog.__
Markup is based on php markdown extra definition, but without multiline support.
Markdown:
```
*[HTML]: Hyper Text Markup Language
*[W3C]: World Wide Web Consortium
The HTML specification
is maintained by the W3C.
HTML:
` The HTML specificationhtml`
is maintained by the W3C.
node.js, browser:
`bash`
npm install markdown-it-abbr --save
bower install markdown-it-abbr --save
`js
var md = require('markdown-it')()
.use(require('markdown-it-abbr'));
md.render(/.../) // see example above
`
_Differences in browser._ If you load script directly into the page, without
package system, module will add itself globally as window.markdownitAbbr`.