"body":"Showdown is a Javascript Markdown to HTML converter. Showdown can be used client side (in the browser) or server side (with NodeJs). Check a live [demo here](http://showdownjs.github.io/demo/)\r\n\r\n# Who uses Showdown\r\n - [GoogleCloudPlatform](https://github.com/GoogleCloudPlatform)\r\n - [Ghost](https://ghost.org/)\r\n - [Meteor](https://www.meteor.com/)\r\n - [Stackexchange](http://stackexchange.com/) - forked as [PageDown](https://code.google.com/p/pagedown/)\r\n - [docular](https://github.com/Vertafore/docular)\r\n - [and some others...](https://www.npmjs.com/browse/depended/showdown)\r\n\r\n\r\n# Get it...\r\n\r\n* **Download tarball:** download the latest release tarball directly from [releases][releases]\r\n* **CDN:**\r\n * rawgit: `https://cdn.rawgit.com/showdownjs/showdown/<version tag>/dist/showdown.min.js`\r\n * cdnjs: `https://cdnjs.cloudflare.com/ajax/libs/showdown/<version tag>/showdown.min.js`\r\n* **Bower:** `bower install showdown`\r\n* **npm:** `npm install showdown`\r\n* **NuGet:** `PM> Install-Package showdownjs` - [NuGet package here][nuget-package]\r\n\r\n# Use it...\r\n\r\n```js\r\n//node\r\nvar showdown = require('showdown');\r\nvar converter = new showdown.Converter();\r\nvar htmlOutput = converter.makeHtml('*Hello* __World__');\r\n```\r\n\r\nCheck our [wiki pages][wiki] for a more in-depth documentation, such as [syntax support][wiki-syntax-support], [examples][wiki-examples], [extensions][wiki-extensions], etc...\r\n\r\n\r\n[sd-logo]: https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png\r\n[releases]: https://github.com/showdownjs/showdown/releases\r\n[nuget-package]: https://www.nuget.org/packages/showdownjs/\r\n[wiki]: https://github.com/showdownjs/showdown/wiki\r\n[wiki-syntax-support]: https://github.com/showdownjs/showdown/wiki/Showdown's-Markdown-syntax\r\n[wiki-examples]: https://github.com/showdownjs/showdown/wiki/Tutorial:-Markdown-editor-using-Showdown\r\n[wiki-extensions]: https://github.com/showdownjs/showdown/wiki/extensions\r\n[changelog]: https://github.com/showdownjs/showdown/blob/master/CHANGELOG.md\r\n\r\n\r\n-----------\r\n\r\n# [Changelog][changelog]\r\n\r\n\r\n\r\n\r\n# Credits\r\nFull credit list at https://github.com/showdownjs/showdown/blob/master/CREDITS.md\r\n\r\nShowdown is powered by:<br/>\r\n[![webstorm](https://www.jetbrains.com/webstorm/documentation/docs/logo_webstorm.png)](https://www.jetbrains.com/webstorm/)\r\n\r\n\r\n\r\n",