github-markdown-render 
Render markdown using the GitHub Markdown API
Install
$ npm install --save github-markdown-render
Usage
var githubMarkdownRender = require('github-markdown-render');
githubMarkdownRender('**foo**', function (err, data) {
console.log(data);
});
API
githubMarkdownRender(markdown, callback)
markdown
Required
Type: string
Markdown to be rendered.
callback(err, data)
Type: function
data
Type: string
Rendered HTML.
CLI
$ npm install --global github-markdown-render
$ github-markdown-render --help
Usage
$ github-markdown-render **foo**
$ cat readme.md | github-markdown-render
License
MIT © Kevin Mårtensson