mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-21 15:40:02 +01:00
7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
|
|
/* This file is NOT part of highlight.js */
|
||
|
|
document.addEventListener('DOMContentLoaded', (event) => {
|
||
|
|
document.querySelectorAll('pre.programlisting, pre.screen').forEach((block) => {
|
||
|
|
hljs.highlightBlock(block);
|
||
|
|
});
|
||
|
|
});
|