27a48ae84a
- Create separate addon javascript file - Register stylesheet and Javascript files
7 lines
226 B
JavaScript
7 lines
226 B
JavaScript
hljs.initHighlightingOnLoad();
|
|
|
|
document.addEventListener('postprocess_liveupdate', function () {
|
|
var blocks = document.querySelectorAll('pre code:not(.hljs)');
|
|
Array.prototype.forEach.call(blocks, hljs.highlightBlock);
|
|
});
|