nxus-md-renderer
v4.0.0-1
Published
A markdown renderer for nxus-renderer
Downloads
24
Readme
Nxus Markdown Renderer
This module provides a Nxus module for rendering Markdown Content.
Don't know Nxus? Learn about it.
Installation
> npm install nxus-md-renderer --save
Usage
In order to use the renderer, request the Renderer.render method with either 'md' or 'markdown' as the type.
var renderer = app.get('renderer')
renderer.request('render', 'md', '### Some Markdown Content').then((content) => {
console.log(content)
})