blog/public/js/highlight.js

8 lines
172 B
JavaScript
Raw Normal View History

2025-11-28 09:03:51 +00:00
// adding this to highlight inline code block
$(document).ready(function() {
$('p code').each(function(i, inline) {
hljs.highlightBlock(inline);
});
});