aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorHakim El Hattab2013-01-23 16:03:01 -0500
committerHakim El Hattab2013-01-23 16:03:01 -0500
commitf3b4881cdbb885ea4409542341d0033a572ad1d2 (patch)
tree19780520a864d36fe1eef224c4de746d30d2d891 /README.md
parent3f8d48d5701b1cfcd96043f948377307d6ea6e12 (diff)
update code sample for syntax highlight in readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 2 insertions, 6 deletions
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
<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>
```