Yay (GitHub-Flavored) Markdown Editor =================== #### Basic useful feature list: * Ctrl/Cmd + S to save the file * Ctrl + P to save the file in PDF >**Note** (Support on Google Chrome Only) because other browser doesn't inclue save print file as pdf. So, firstly I had tried with jspdf but currently, it's failed. So, I just support google chrome only. * Drag and drop a file into here to load it * File contents are saved in the URL so you can share files #### Look, a list! * foo * bar * baz #### And here's some code! $(function(){ $('div').html('I am a div.'); }); #### You want to see the **bold letter** or *italic*? You have to open and close with `**` to what you want to bold. > Example Bold->** Bold Letter ** You have to open and close with `*` to what you want to italic. > Example Italic->*Italic* #### Tables Item | Value -------- | --- Computer | $1600 Phone | $12 Pipe | $1 #### This is on GitHub This is [on GitHub](https://github.com/setkyar/yay) so let me know if I've b0rked it somewhere. BTW, I use [DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE](http://www.wtfpl.net/txt/copying/) ### 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 The above links are original author [jbt](https://github.com/jbt) used. As for me. I had totally clone [jbt's code](https://github.com/jbt/markdown-editor) and I modified what I want. If there is no [jbt's code](https://github.com/jbt/markdown-editor) this will not be become. Thanks [jbt](https://github.com/jbt) .