Files
ankn b46de6dc7d
Deploy CV Site (andreknie.de) / deploy (push) Canceled after 0s
ci: migrate GitHub actions to Gitea actions
2026-07-22 15:42:06 +02:00

15 lines
267 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
function decodeHtml(html) {
if (!html) return '';
const txt = document.createElement("textarea");
txt.innerHTML = html;
return txt.value;
}
console.log(decodeHtml("jetzt wird&#39;s schwerer"));
</script>
</body>
</html>