You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
367 B
JavaScript

require.config({
paths: {
'prismjs': 'assets/plugins/prismjs/js/prism.pack',
},
shim: {
prism: {
exports: "Prism"
}
}
});
require(['prismjs', 'jquery'], function(prismjs, $){
$(document).ready(function(){
// $('[class^="language-"]').each(function(i, block) {
// Prism.highlightElement(block);
// });
});
});