function htmlToElement(e){const t=document.createElement("template");return e=e.trim(),t.innerHTML=e,t.content.firstChild}function initPopover(e,t){const n=e.replace(window.location.origin,"");fetchData.then(({content:e})=>{const s=[...document.getElementsByClassName("internal-link")];s.filter(e=>e.dataset.src||e.dataset.idx&&t).forEach(t=>{if(t.dataset.ctx){const n=e[t.dataset.src],o=`
${n.title}
${highlight(removeMarkdown(n.content),t.dataset.ctx)}...
${new Date(n.lastmodified).toLocaleDateString()}
`,s=htmlToElement(o);t.appendChild(s),t.addEventListener("mouseover",()=>{s.classList.add("visible")}),t.addEventListener("mouseout",()=>{s.classList.remove("visible")})}else{const s=e[t.dataset.src.replace(/\/$/g,"").replace(n,"")];if(s){const n=`
${s.title}
${removeMarkdown(s.content).split(" ",20).join(" ")}...
${new Date(s.lastmodified).toLocaleDateString()}
`,e=htmlToElement(n);t.appendChild(e),t.addEventListener("mouseover",()=>{e.classList.add("visible")}),t.addEventListener("mouseout",()=>{e.classList.remove("visible")})}}})})}