Update with tech changes.

This commit is contained in:
Jacob Kiers 2023-05-12 15:55:55 +00:00
parent 13d8b7f87e
commit d942833b06
1 changed files with 7 additions and 2 deletions

View File

@ -72,7 +72,12 @@ async function fetchChunk(id, hash)
async function fetchData(domain)
{
const json = await fetch(`${dohServer}${domain}`)
const json = await fetch(`${dohServer}${domain}`, {
method: "GET",
headers: {
"Accept": "application/dns-json"
}
})
.then(response => response.json());
const raw_data = json.Answer[0].data;
const data = raw_data.replaceAll(/[\s\"]/g, '');
@ -142,7 +147,7 @@ async function handleMarkdown(content)
});
if (typeof content.metaData.title !== "undefined") document.title = content.metaData.title;
document.getElementById("post").innerHTML = marked(content.content);
document.getElementById("post").innerHTML = marked.parse(content.content);
let title = document.createElement("h1");
title.innerHTML = content.metaData.title;
document.getElementById("post").prepend(title)