0.1.1 • Published 7 years ago

markdown-it-ruby v0.1.1

Weekly downloads
179
License
MIT
Repository
github
Last release
7 years ago

markdown-it-ruby

NPM version

Ruby annotations (<ruby>) tag plugin for markdown-it markdown parser.

{ruby base|ruby text} => <ruby>ruby base<rt>ruby text</rt></ruby>

Markup is based on DenDenMarkdown definition.

Install

node.js:

npm install markdown-it-ruby --save

Use

var md = require('markdown-it')()
            .use(require('markdown-it-ruby'));

md.render('{ruby base|rubytext}') // => '<p><ruby>ruby base<rt>ruby text</rt></ruby></p>'

License

MIT