Public: Remove accidentally commited blog overview

This commit is contained in:
networkException 2022-12-03 01:10:02 +01:00
parent fff30edbe1
commit 3285a6a81f
Signed by: networkException
GPG key ID: E3877443AE684391

View file

@ -1,36 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="favicon.png" type="image/png">
<link rel="stylesheet" href="style/index.css">
<title>nwex.de/blog</title>
</head>
<body>
<h1>blog</h1>
<h2>Random things that interest me</h2>
<h3>2022</h3>
<ul>
<li>2022-02-04 <a href="/blog/nodejs-fetch.md">node.js fetch api support</a></li>
</ul>
<!-- Inner workings of the page -->
<script type="module">
import { tokenize, normalizeNewlines, highlight } from './script/html.js';
import { render } from './script/view.js';
import { Inspector } from './script/html/inspector.js';
const response = await fetch(window.location.href);
const text = await response.text();
window.tokens = tokenize(normalizeNewlines(text));
window.spans = highlight(tokens);
const inspector = new Inspector();
render(text, spans, inspector);
</script>
</body>
</html>