Skip to content
Snippets Groups Projects
Commit 1aa66aa4 authored by Aaron Steele's avatar Aaron Steele
Browse files

Add Clojure to highlight.js, add code highlight example to README.

parent 2f48c272
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,36 @@ This is based on [data-markdown](https://gist.github.com/1343518) from [Paul Iri
</section>
```
### Code syntax higlighting
By default, Reveal is configured with [highlight.js](http://softwaremaniacs.org/soft/highlight/en/) for code syntax highlighting. For example, a section like this:
```html
<section>
<p align="left">
<code class="clojure">
<pre>
(def lazy-fib
(concat
[0 1]
((fn rfib [a b]
(lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
</pre>
</code>
</p>
</section>
```
Will render like this:
```clojure
(def lazy-fib
(concat
[0 1]
((fn rfib [a b]
(lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
```
### Configuration
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment