From: David Banham Date: Thu, 7 Mar 2013 23:29:54 +0000 (+1100) Subject: Merge branch 'master' of https://github.com/hakimel/reveal.js X-Git-Tag: 2.3.0~13^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=61c229a4f969a0720085c2710f8a7cfd8a12b4a6;p=reveal.js.git Merge branch 'master' of https://github.com/hakimel/reveal.js Conflicts: README.md index.html js/reveal.js package.json plugin/speakernotes/client.js --- 61c229a4f969a0720085c2710f8a7cfd8a12b4a6 diff --cc README.md index 9d2ceaa,f4b5e6e..2778015 --- a/README.md +++ b/README.md @@@ -135,162 -301,119 +301,130 @@@ Reveal.addEventListener( 'fragmenthidde } ); ``` - ### Folder Structure - - **css/** Core styles without which the project does not function - - **js/** Like above but for JavaScript - - **plugin/** Components that have been developed as extensions to reveal.js - - **lib/** All other third party assets (JavaScript, CSS, fonts) + ### Code syntax higlighting - ## Speaker Notes + By default, Reveal is configured with [highlight.js](http://softwaremaniacs.org/soft/highlight/en/) for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted: - If you're interested in using speaker notes, reveal.js comes with a Node server that allows you to deliver your presentation in one browser while viewing speaker notes in another. + ```html +
+

+ (def lazy-fib
+   (concat
+    [0 1]
+    ((fn rfib [a b]
+         (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
+ 	
+
+ ``` - To include speaker notes in your presentation, simply add an `