![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | dist/ | 2 years ago | - | |
![]() | package.json | 2 years ago | 1.7K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | index.js | 2 years ago | 1.5K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | bower.json | 2 years ago | 525 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | README.md | 2 years ago | 1.3K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | LICENSE | 2 years ago | 1.1K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | CHANGELOG.md | 2 years ago | 160 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
Subscript (
<sub>
) tag plugin for markdown-it markdown parser.
v1.+ requires markdown-it
v4.+, see changelog.
H~2~0
=> H<sub>2</sub>O
Markup is based on pandoc definition. But nested markup is currently not supported.
node.js, browser:
npm install markdown-it-sub --save
bower install markdown-it-sub --save
var md = require('markdown-it')()
.use(require('markdown-it-sub'));
md.render('H~2~0') // => '<p>H<sub>2</sub>O</p>'
Differences in browser. If you load script directly into the page, without
package system, module will add itself globally as window.markdownitSub
.