This commit is contained in:
NotAShelf 2023-12-25 08:22:11 +00:00
commit 10e525e0f9
44 changed files with 23813 additions and 5101 deletions

6
highlightjs/loader.js Normal file
View file

@ -0,0 +1,6 @@
/* This file is NOT part of highlight.js */
document.addEventListener('DOMContentLoaded', (event) => {
document.querySelectorAll('.programlisting, .screen').forEach((element) => {
hljs.highlightElement(element);
});
});