Tucker McKnight
fix JS error if prism stylesheet is not being used on the page
31 32
const link = document.getElementById("prism-theme")
link.href = link.href.split("/").slice(0, -1).concat(stylesheet).join("/")
31 32
const link = document.getElementById("prism-theme")
if (link) {
link.href = link.href.split("/").slice(0, -1).concat(stylesheet).join("/")
}