Deploy welpo/tabi to welpo/tabi:gh-pages

This commit is contained in:
GitHub Actions 2025-11-04 13:26:57 +00:00
commit 9c032744d3
971 changed files with 22238 additions and 0 deletions

1
js/decodeMail.min.js vendored Normal file
View file

@ -0,0 +1 @@
!function(){"use strict";document.querySelectorAll("[data-encoded-email]").forEach(function(e){var t=function(e){try{var t=[...atob(e)].map(e=>e.charCodeAt(0)),r=new Uint8Array(t.length);return r.set(t),new TextDecoder("utf-8").decode(r)}catch(e){return console.error("Failed to decode Base64 string: ",e),null}}(e.getAttribute("data-encoded-email"));t?e.setAttribute("href","mailto:"+t):e.style.display="none"})}();