diff --git a/README.md b/README.md index 0b6d401..3a62aa5 100644 --- a/README.md +++ b/README.md @@ -49,37 +49,6 @@ This is based on [data-markdown](https://gist.github.com/1343518) from [Paul Iri ``` -### Code syntax higlighting - -By default, Reveal is configured with [highlight.js](http://softwaremaniacs.org/soft/highlight/en/) for code syntax highlighting. For example, a section like this: - -```html -
-

- -

-(def lazy-fib
-  (concat
-   [0 1]
-   ((fn rfib [a b]
-        (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
-			
- -

-
- -``` - -Will render like this: - -```clojure -(def lazy-fib - (concat - [0 1] - ((fn rfib [a b] - (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1))) -``` - ### Configuration At the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below. @@ -283,6 +252,27 @@ Reveal.addEventListener( 'fragmenthidden', function( event ) { } ); ``` +### Code syntax higlighting + +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: + +```html +
+

+ +

+(def lazy-fib
+  (concat
+   [0 1]
+   ((fn rfib [a b]
+        (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
+			
+ +

+
+``` + + ### Overview mode Press "Esc" key to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides,