privacy.md aktualisiert
This commit is contained in:
parent
271d66170b
commit
1ccb8f4fcd
1 changed files with 0 additions and 21 deletions
21
privacy.md
21
privacy.md
|
|
@ -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.
|
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.
|
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}@${d}-${e}.${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>
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue