diff options
author | Hakim El Hattab | 2013-01-23 16:03:01 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-01-23 16:03:01 -0500 |
commit | f3b4881cdbb885ea4409542341d0033a572ad1d2 (patch) | |
tree | 19780520a864d36fe1eef224c4de746d30d2d891 /README.md | |
parent | 3f8d48d5701b1cfcd96043f948377307d6ea6e12 (diff) |
update code sample for syntax highlight in readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 2 insertions, 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> ``` |