1Meltdown (Markdown Extra Live Toolbox)
2======================================
3
4A JQuery plugin that adds Markdown Extra live previews, and a toolbar for common markdown actions. **Check out the [project page](http://iphands.github.com/Meltdown/) for a live demo**
5
6##Usage
7###Simple, standard, awesome
8~~~
9jQuery('some_selector').meltdown();
10~~~
11###Advanced, changing the preview slider timeout and adding an example widget, still awesome
12~~~
13jQuery('some_selector').meltdown({
14  previewTimeout: 4000,
15  examples['test'] = {
16    label: "Test",
17    altText: "A test example/opt",
18    markdown: "this is a test"
19  }
20});
21~~~
22
23##Libraries that Meltdown uses
24* [jQuery](http://jquery.com/)
25* [jQuery UI](http://jqueryui.com/) [1]
26* [js-markdown-extra](https://github.com/tanakahisateru/js-markdown-extra "Github link to js-markdown-extra")
27* [rangyinputs](http://code.google.com/p/rangyinputs/ "Google code link to rangyinputs") [1]
28
29[1] jQuery UI and rangyinputs are optional. For now Meltdown will still function without these plugins.
30
31##License
32Copyright (c) 2013 Ian Page Hands and Mark Caron. Licensed under the GPLv3 license.
33