Only apply syntax highlighting to code now that we know the type

This commit is contained in:
Paul van Tilburg 2012-01-15 16:19:12 +01:00
parent 3e0d783454
commit 2537e0ef77

View file

@ -19,7 +19,7 @@ $(document).ready(function() {
stop: update_drag_info });
// FIXME: highlight text for now, until we can determine and
// store what everything exactly is.
$("pre").each(function(idx, elem) {
$("pre code").each(function(idx, elem) {
hljs.highlightBlock(elem, ' ');
});
})