• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..24-Feb-2020-

css/H24-Feb-2020-357344

fonts/H24-Feb-2020-9898

js/H24-Feb-2020-3,3292,160

README.mdH A D06-Jun-20161.1 KiB3327

README.md

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