Revert "BUGFIX: highlight standard code blocks"

This reverts commit d5b1b64bb8.
This commit is contained in:
Régis Hanol 2014-03-27 19:21:32 +01:00
parent 218384e86c
commit f397a3e157

View file

@ -16,7 +16,7 @@ Discourse.SyntaxHighlighting = {
@param {jQuery.selector} $elem The element we want to apply our highlighting to
**/
apply: function($elem) {
$('pre code', $elem).each(function(i, e) {
$('pre code[class]', $elem).each(function(i, e) {
return $LAB.script("/javascripts/highlight.pack.js").wait(function() {
return hljs.highlightBlock(e);
});