markdeep = {
window.markdeepOptions = { mode: 'script', detectMath: false };
const t = (await fetch("https://morgan3d.github.io/markdeep/1.15/markdeep.min.js", new Headers({"Content-Type": "text/javascript"})))
const text = await t.text()
new Function(text)()
return ttemplatify(str => {
const output = window.markdeep.format(str);
return html`
<meta charset="utf-8">
<style>${window.markdeep.stylesheet()}</style>
${output}
`;
});
}