# (GitHub-Flavored) Markdown Editor Basic useful feature list: * Ctrl/Cmd + S to save the file * Drag and drop a file into here to load it * File contents are saved in the URL so you can share files * Auto save and it will show latest text when open again Here is table |Title 1 | Title 2 | |--------| ------- | | Test | Test | Look, a list! * foo * bar * baz And here's some code! ```javascript $(function(){ $('div').html('I am a div.'); }); ``` This is [on GitHub](https://github.com/saturngod/markdown-editor). Forked from James Taylor's [markdown editor](https://github.com/jbt/markdown-editor). Props to Mr. Doob and his [code editor](http://mrdoob.com/projects/code-editor/), from which the inspiration to this, and some handy implementation hints, came. ### Stuff used to make this: * [marked](https://github.com/chjj) for Markdown parsing * [CodeMirror](http://codemirror.net/) for the awesome syntax-highlighted editor * [highlight.js](http://softwaremaniacs.org/soft/highlight/en/) for syntax highlighting in output code blocks * [js-deflate](https://github.com/dankogai/js-deflate) for gzipping of data to make it fit in URLs
Download HTML