mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 04:37:47 +08:00
11 lines
266 B
JavaScript
11 lines
266 B
JavaScript
|
|
let $ = document.querySelector.bind(document);
|
|
let $$ = document.querySelectorAll.bind(document);
|
|
|
|
// Syntax highlighting.
|
|
document.addEventListener('DOMContentLoaded', (event) => {
|
|
$$('.highlight').forEach(function(el) {
|
|
hljs.highlightElement(el);
|
|
});
|
|
});
|