mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
10 lines
265 B
JavaScript
10 lines
265 B
JavaScript
'use strict';
|
|
|
|
document.addEventListener('DOMContentLoaded', function(){
|
|
if(hljs){
|
|
let blocks = document.querySelectorAll('code.html.full, code.css.full, figure code.html');
|
|
for(let i = 0; i < blocks.length; i++){
|
|
hljs.highlightBlock(blocks[i]);
|
|
}
|
|
}
|
|
});
|