fixes to HTML head

This commit is contained in:
2026-04-22 20:39:59 +02:00
parent 10a09db853
commit bd935c62f5
4 changed files with 91 additions and 40 deletions
+23 -2
View File
@@ -198,6 +198,27 @@ This is what the programm outputted to the stdout file (inserted into out.html):
</body>
</html>
```
### Fix (22/04/26):
rewrite of sanizizer.py
now output looks like this:
```html
<!DOCTYPE html>
<html>
<!-- sanigi-html parsed @ 2026-04-22 20:23:01.043256 -->
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Document</title>
</head>
<body>
<h1>Test</h1>
<p>This is a test</p>
</body>
</html>
```