2024-05-28 21:12:00 +00:00
|
|
|
|
2024-07-05 21:58:50 +00:00
|
|
|
export function highlightOnDom() {
|
|
|
|
const pre_elements = document.querySelectorAll("pre");
|
|
|
|
for (const pre_el of pre_elements) {
|
|
|
|
const language = pre_el.getAttribute("data-language");
|
|
|
|
if (language === null) { continue; }
|
|
|
|
|
|
|
|
// Create a visual indicador
|
|
|
|
const indicator = document.createElement("span");
|
2024-07-12 02:59:38 +00:00
|
|
|
indicator.className = `absolute top-1 right-0 inline-block text-sm select-none opacity-75 ${language === "php" ? "bg-[#4f5b93]" : ""} px-2 rounded-full`;
|
2024-07-05 21:58:50 +00:00
|
|
|
indicator.innerText = language;
|
|
|
|
pre_el.appendChild(indicator);
|
|
|
|
}
|
|
|
|
}
|
2024-05-28 21:12:00 +00:00
|
|
|
|