Skip to content

Commit

Permalink
update code sample for syntax highlight in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimel committed Jan 23, 2013
1 parent 3f8d48d commit f3b4881
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,17 +258,13 @@ By default, Reveal is configured with [highlight.js](http://softwaremaniacs.org/

```html
<section>
<p align="left">
<code>
<pre>
<pre><code>
(def lazy-fib
(concat
[0 1]
((fn rfib [a b]
(lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
</pre>
</code>
</p>
</code></pre>
</section>
```

Expand Down

0 comments on commit f3b4881

Please sign in to comment.