I'm using the Highlight.js library for syntax highlighting of code in Blogger and it refuses to highlight Lisp code properly.
In the article on Blogger:
<pre><code class="lisp">
(coerce (average 1 2 3 4) 'float)
> 2.5
</code></pre>
In the design template before the closing </head>
:
<script src='http://yandex.st/highlightjs/7.0/lisp.min.js' ></script>
<script src='http://yandex.st/highlightjs/7.0/highlight.min.js' ></script>
<link href='http://yandex.st/highlightjs/7.0/styles/github.min.css' rel='stylesheet' />
<script type='text/javascript'>
hljs.initHighlightingOnLoad();
</script>
Upon opening the article the highlighting is broken, Firebug shows this in the HTML panel:
<pre>
<code class="lisp ruby"> // WTF
... stylized RUBY tokens here ...
</code>
</pre>
On some code snippets highlighter puts <code class="lisp undefined">
and refuses to highlight at all. As I'm on a Blogger, I really don't want to download anything to anywhere, especially when there is already published language packs. What magic should I do for Lisp to become recognizable?