mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 23:00:28 -04:00
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
'use strict';
|
|
|
|
$(function(){
|
|
if(hljs){
|
|
$('code.html.full, code.css.full, figure code.html').each(function(i, block) {
|
|
hljs.highlightBlock(block);
|
|
});
|
|
}
|
|
});
|