diff options
author | hakimel | 2013-01-23 15:55:33 -0500 |
---|---|---|
committer | hakimel | 2013-01-23 15:55:33 -0500 |
commit | 3f8d48d5701b1cfcd96043f948377307d6ea6e12 (patch) | |
tree | cbd85822e2d1429c27133c5f8b62d0da7167648f /README.md | |
parent | 3f140ef50e854c1d39a562065fbbcd053a4e6f4d (diff) |
merge in clojure syntax highlighting, tweak readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 52 |
1 files changed, 21 insertions, 31 deletions
@@ -49,37 +49,6 @@ This is based on [data-markdown](https://gist.github.com/1343518) from [Paul Iri </section> ``` -### 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 -<section> - <p align="left"> - <code class="clojure"> - <pre> -(def lazy-fib - (concat - [0 1] - ((fn rfib [a b] - (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1))) - </pre> - </code> - </p> -</section> - -``` - -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 +<section> + <p align="left"> + <code> + <pre> +(def lazy-fib + (concat + [0 1] + ((fn rfib [a b] + (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1))) + </pre> + </code> + </p> +</section> +``` + + ### 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, |