more posts

This commit is contained in:
2025-11-28 10:03:51 +01:00
parent edaa868caa
commit 55bd24b6e6
64 changed files with 3605 additions and 316 deletions

7
public/js/highlight.js Normal file
View File

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