neovim-flake/docs-preview-494/highlightjs/loader.js

7 lines
236 B
JavaScript
Raw Normal View History

2024-12-20 05:12:40 +01:00
/* This file is NOT part of highlight.js */
document.addEventListener('DOMContentLoaded', (event) => {
document.querySelectorAll('.programlisting, .screen').forEach((element) => {
hljs.highlightElement(element);
});
});