Files
website/themes/hugo-theme-monochrome/assets/js/prism.js
Simon Gardling 032679b34a setup
2023-10-11 17:38:05 -04:00

14 lines
340 B
JavaScript

function highlight() {
document.querySelectorAll("pre:not(.emgithub-pre)").forEach(e => {
Prism.highlightAllUnder(e, false, () => {
requestAnimationFrame(() => {
e.classList.remove("hide");
})
});
});
}
window.addEventListener("DOMContentLoaded", () => {
highlight();
})