blob: c50037c6b2b3faea9be7b5bb8c62778bfdbfea69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
function load_css(url) {
let link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = url;
let head = document.getElementsByTagName("head")[0];
head.appendChild(link);
}
addEventListener("load", function () {
if (document.querySelector(".highlight .chroma")) {
load_css("/css/syntax.css");
}
});
|