Skip to content

Commit 0dabf71

Browse files
committed
Remove HTML encoding from secret
this allows for higher quality shitposting
1 parent c982332 commit 0dabf71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def handle_starttag(self, tag, attrs):
9494
f.write(f": {html_escape(title)}".encode())
9595
f.write(f"</div>".encode())
9696
f.write(
97-
f'<div style="margin-top:8px">{html_escape(sys.argv[-1])}</div></body></html>'.encode()
97+
f'<div style="margin-top:8px">{sys.argv[-1]}</div></body></html>'.encode()
9898
)
9999
print(
100100
f"==> Generated nav.html file ({len(html_files.items())} {'item' if len(html_files.items()) == 1 else 'items'}, {os.path.getsize('./www/nav.html')} bytes)"

0 commit comments

Comments
 (0)