# markdown-it-ruby [![NPM version](https://img.shields.io/npm/v/markdown-it-ruby.svg?style=flat)](https://www.npmjs.org/package/markdown-it-ruby) > Ruby annotations (``) tag plugin for [markdown-it](https://github.com/markdown-it/markdown-it) markdown parser. `{ruby base|ruby text}` => `ruby baseruby text` Markup is based on [DenDenMarkdown](https://conv.denshochan.com/markdown) definition. ## Install node.js: ```bash npm install markdown-it-ruby --save ``` ## Use ```js var md = require('markdown-it')() .use(require('markdown-it-ruby')); md.render('{ruby base|rubytext}') // => '

ruby baseruby text

' ``` ## License [MIT](https://github.com/lostandfound/markdown-it-ruby/blob/master/LICENSE)