in gulpfile.js [29:39]
highlight: function (code, lang) {
// Only highlight if language was specified and is not bash
// (bash highlighting is pretty bad right now in highlightjs)
var ignore = ['bash', 'sh', 'zsh'];
if (lang && ignore.indexOf(lang) === -1) {
return require('highlight.js').highlightAuto(code, [lang]).value;
}
else {
return code;
}
}