Source code highlighting
Integrated some source highlighting into my little webbie using cljsjs/highlight. A few examples below.
XML
<div>hello</div>
Clojure
(defn hello []
(println "world"))
Python
print('hello')
print('hello2')
<div>hello</div>
(defn hello []
(println "world"))
print('hello')
print('hello2')