diff options
author | hakimel | 2013-01-23 15:27:55 -0500 |
---|---|---|
committer | hakimel | 2013-01-23 15:27:55 -0500 |
commit | 3f140ef50e854c1d39a562065fbbcd053a4e6f4d (patch) | |
tree | 5c38fd93643787f4e8e1ade70b6d78a96e76863d /README.md | |
parent | a041f9c64a34eaa750acd874bdf7027b7015bc29 (diff) | |
parent | 1aa66aa46951e8a612e6bbb7ebac6370a9aa875f (diff) |
Merge branch 'feature/highlightjs-clojure' of https://github.com/eightysteele/reveal.js
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -49,6 +49,36 @@ 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 |