#### GitHub Flavored Markdown Editor

- Play around with [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/).
- See the markdown generated in the "output" box.
- You can use `editor.setData( markdownString )` to set markdown content:

```js
editor.setData( 'This\n\n*is*\n\n**MARKDOWN!**' );
```
