[automated] update diyhrt.wiki

This commit is contained in:
github-actions
2024-12-17 01:16:38 +00:00
parent 69c8c82705
commit eeaf18c6b4
12 changed files with 1640 additions and 19 deletions
+8 -1
View File
@@ -1 +1,8 @@
fetch('nav.html').then(res=>res.text()).then(text=>{let oldElem=document.querySelector("script#replace_with_navbar");let newElem=document.createElement("div");newElem.innerHTML=text;oldElem.parentNode.replaceChild(newElem,oldElem);})
fetch('nav.html')
.then(res => res.text())
.then(text => {
let oldElem = document.querySelector("script#replace_with_navbar");
let newElem = document.createElement("div");
newElem.innerHTML = text;
oldElem.parentNode.replaceChild(newElem, oldElem);
})