update code sample for syntax highlight in readme
This commit is contained in:
parent
3f8d48d570
commit
f3b4881cdb
1 changed files with 2 additions and 6 deletions
|
@ -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>
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue