{"name":"Showdown","tagline":"A JavaScript markdown converter. Extensible. Truthful.","body":"\r\n**Showdown** is a markdown parser and html converter with an attempt to stay [as close as possible](https://github.com/showdownjs/showdown/wiki/divergences) to the [original](http://web.archive.org/web/20110111145019/http://attacklab.net/showdown/), while providing extensibility through a simple yet efficient [plugin](https://github.com/showdownjs/showdown/wiki/extensions) facility. Tables, GitHub flavoured, and what not.\r\n\r\n## Get It\r\n\r\n```\r\nnpm install showdown\r\n# or\r\nbower install showdown\r\n```\r\n\r\n## Use It\r\n\r\n```\r\nvar Showdown = require('showdown');\r\nvar converter = new showdown.Converter();\r\n\r\nconverter.makeHtml('#hello markdown!');\r\n\r\n//