mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-03 12:27:35 -05:00
BUGFIX: highlight standard code blocks
This commit is contained in:
parent
fe80e02b75
commit
d5b1b64bb8
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ Discourse.SyntaxHighlighting = {
|
||||||
@param {jQuery.selector} $elem The element we want to apply our highlighting to
|
@param {jQuery.selector} $elem The element we want to apply our highlighting to
|
||||||
**/
|
**/
|
||||||
apply: function($elem) {
|
apply: function($elem) {
|
||||||
$('pre code[class]', $elem).each(function(i, e) {
|
$('pre code', $elem).each(function(i, e) {
|
||||||
return $LAB.script("/javascripts/highlight.pack.js").wait(function() {
|
return $LAB.script("/javascripts/highlight.pack.js").wait(function() {
|
||||||
return hljs.highlightBlock(e);
|
return hljs.highlightBlock(e);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue