Paragraphs are separated by a blank line.
2nd paragraph. Italic, bold, and monospace. Itemized lists
look like:
- this one
- that one
| function car() { | |
| return { | |
| start: function() { | |
| console.log("Engine on."); | |
| }, | |
| accelerate: function() { | |
| console.log("Let's go!"); | |
| } | |
| }; | |
| } |
| $(document).bind("WithHistory.urlDidChange", function() { | |
| $.ajax(window.withHistory.url(), { | |
| dataType: "html", | |
| success: function(response) { | |
| var body = response.match(/<body.*?>([\s\S]+?)<\/body>/)[1]; | |
| var tmp = $("<div />"); | |
| tmp.html(body); | |
| var newContent = tmp.find("#pagecontent").html(); | |
| $("#pagecontent").animate({ opacity: 0 }, 250); |