From: Hakim El Hattab Date: Wed, 23 Jan 2013 21:03:01 +0000 (-0500) Subject: update code sample for syntax highlight in readme X-Git-Tag: 2.2.0~2 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f3b4881cdbb885ea4409542341d0033a572ad1d2;p=reveal.js.git update code sample for syntax highlight in readme --- diff --git a/README.md b/README.md index 3a62aa5..d24f438 100644 --- a/README.md +++ b/README.md @@ -258,17 +258,13 @@ By default, Reveal is configured with [highlight.js](http://softwaremaniacs.org/ ```html
-

- -

+	

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

+
```