Files
blog/public/js/highlight.js
2025-11-28 10:03:51 +01:00

8 lines
172 B
JavaScript

// adding this to highlight inline code block
$(document).ready(function() {
$('p code').each(function(i, inline) {
hljs.highlightBlock(inline);
});
});