From 1aa66aa46951e8a612e6bbb7ebac6370a9aa875f Mon Sep 17 00:00:00 2001 From: Aaron Steele Date: Mon, 21 Jan 2013 17:53:39 -0800 Subject: Add Clojure to highlight.js, add code highlight example to README. --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 92ca02b..0b6d401 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,36 @@ 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 -- cgit v1.2.3