mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
7 lines
236 B
JavaScript
7 lines
236 B
JavaScript
|
/* This file is NOT part of highlight.js */
|
||
|
document.addEventListener('DOMContentLoaded', (event) => {
|
||
|
document.querySelectorAll('.programlisting, .screen').forEach((element) => {
|
||
|
hljs.highlightElement(element);
|
||
|
});
|
||
|
});
|