为什么GitHub会将js附加到我的jekyll网站

时间:2015-05-18 02:34:27

标签: javascript github jekyll github-pages

我注意到GitHub会附加一个似乎的js,以便在他们拥有字符串/cdn-cgi/l/email-protection时删除指向电子邮件地址的链接。任何其他人都有这个奇怪的问题,或者这甚至真的来自GitHub?

以下是此脚本的美化版本:

(function() {
    try {
        var s, a, i, j, r, c, l = document.getElementsByTagName("a"),
            t = document.createElement("textarea");
        for (i = 0; l.length - i; i++) {
            try {
                a = l[i].getAttribute("href");
                if (a && a.indexOf("/cdn-cgi/l/email-protection") > -1 && (a.length > 28)) {
                    s = '';
                    j = 27 + 1 + a.indexOf("/cdn-cgi/l/email-protection");
                    if (a.length > j) {
                        r = parseInt(a.substr(j, 2), 16);
                        for (j += 2; a.length > j && a.substr(j, 1) != 'X'; j += 2) {
                            c = parseInt(a.substr(j, 2), 16) ^ r;
                            s += String.fromCharCode(c);
                        }
                        j += 1;
                        s += a.substr(j, a.length - j);
                    }

                    t.innerHTML = s.replace(/</g, "&lt;").replace(/>/g, "&gt;");
                    l[i].setAttribute("href", "mailto:" + t.value);
                }
            } catch (e) {}
        }
    } catch (e) {}
})();

当我有<a href="mailto:/cdn-cgi/l/email-protection/email@foo.com">Contact</a>之类的链接时,它会变为<a href="mailto:">Contact</a>。否则,它什么都不做。尽管如此,这让我感到困扰,因为我还没有把那个剧本放在那里,而且我似乎没有得到关于GH附加脚本的任何警告。

1 个答案:

答案 0 :(得分:10)

我刚收到GitHub支持的回复,结果发现,当<div class="container" data-spy="affix" data-offset-top="417" id="subnav"> 功能开启时,CloudFlare会添加神秘的脚本。

相关设置位于Email Address Obfuscationhttps://www.cloudflare.com/a/content-protection/<<domain.name>>,如果有人遇到类似问题。