Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<script>
(async function() {
if (!location.hash) {
await new Promise(r => {
window.addEventListener("hashchange", r, { once: true });
location.hash = "foo";
});
location.reload(true);
} else {
parent.document.documentElement.classList = "";
}
})();
</script>