en/privacy.md aktualisiert

This commit is contained in:
Sven Minio 2026-05-17 07:14:36 +02:00
commit 271d66170b

View file

@ -44,24 +44,3 @@ If you contribute to public repositories on this platform (via commits, pull req
Under applicable legal provisions, you have the right at any time to free information about your stored personal data, its origin, recipient, and the purpose of the data processing. You also have the right to request the correction, blocking, or deletion of this data.
Please note: Because Git commits are immutable historical records, deleting names/emails from existing commits is often technically impossible without breaking the repository. We therefore strongly recommend using an anonymized email address for your commits if you do not want it to be publicly visible.
<script>
$(document).ready(() => {
const u = 'contact';
const d = 'source';
const e = 'collab';
const tld = 'com';
const mProto = String.fromCharCode(109, 97, 105, 108, 116, 111, 58);
const at = String.fromCharCode(64);
const dot = String.fromCharCode(46);
const dash = String.fromCharCode(45);
const rawEmail = u + at + d + dash + e + dot + tld;
const displayHtml = `${u}&#64;${d}&#45;${e}&#46;${tld}`;
$('#email-container').each((el) => {
const link = document.createElement('a');
const $link = $(link);
$link.attr('href', mProto + rawEmail).html(displayHtml);
$(el).empty().append($link);
});
});
</script>