14 lines
340 B
JavaScript
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();
|
|
})
|