リンク化

  • /*
     * @title リンク化
     * @description httpやttpやtpなリンクのないURLにリンクを付ける(どこにでもあるやつだけど、標準技術のみで実装している自己満足ver)
     * @include http://*
     * @license MIT License
     */
    
    
    // 【最近の変更】
    // ・正規表現を更に少し変更
    // ・httpsのURLに対応
    // ・scriptタグの中身は変更しないようにした(誤爆しやすいみたいなので)
    // ・構造を大幅に変更
    
    (function() {
        
        var ElementFactory = (function() {
            function ElementFactory(tagName, attrs) {
                this.template = document.createElement(tagName);
                for (var i = 0; i < attrs.length; ++i) {
                    var attr = attrs[i].attr, value = attrs[i].value;
                    this.template[attr] = value;
                }
            }
            ElementFactory.prototype.create = function(attrs) {
                var elem = this.template.cloneNode(true);
                for (var i = 0; i < attrs.length; ++i) {
                    var attr = attrs[i].attr, value = attrs[i].value;
                    elem[attr] = value;
                }
                return elem;
            };
            return ElementFactory;
        })();
        
        
        var pattern = /(?:h?t?tp(s?):\/\/(?:[\w-]+|[^ -~。-゚]+)\.[a-zA-Z]{2,4}[^\s "']*)|(?:[^/\s"'((「【『]*?(?:[\w-]+|[^ -~。-゚]+)\.(?:com|org|net|edu|gov|jp|to|tv|fm|info|(?:co|or|ne|ac|go)\.(?:jp|uk|fr|de))[^\s "'))」】』]*)/g;
        var anchorFactory = new ElementFactory("a", [{ attr: "target", value: "_blank" }]);
        
        convertTextToLink(document.body);
        
        
        function convertTextToLink(rootNode) {
            var filter = function(node) {
                var isAnchorOrScript = node.parentNode && ["A", "SCRIPT"].indexOf(node.parentNode.nodeName) !== -1;
                return isAnchorOrScript ? NodeFilter.FILTER_SKIP : NodeFilter.FILTER_ACCEPT;
            };
            var iter  = document.createNodeIterator(rootNode, NodeFilter.SHOW_TEXT, filter, false);
            var range = document.createRange();
            
            var current;
            while (current = iter.nextNode()) {
                var getPathname = function(url) {
                    var pattern2 = /:\/\//g;
                    return pattern2.exec(url) ? url.slice(pattern2.lastIndex) : url;
                };
                var regRes, matchStack = [];
                
                while (regRes = pattern.exec(current.data)) { // マッチがなくなるまでループしてスタック
                    matchStack.push({
                        mUrl   : "http" + (regRes[1] || "") + "://" + getPathname(regRes[0]),
                        pStart : regRes.index,
                        pEnd   : pattern.lastIndex,
                    });
                }
                while (matchStack.length > 0) { // 後ろから1つずつ取り出して変更を適用
                    var item = matchStack.pop();
                    var a = anchorFactory.create([{ attr: "href", value: item.mUrl }]);
                    
                    range.setStart (current, item.pStart);
                    range.setEnd   (current, item.pEnd  );
                    range.surroundContents(a);
                }
            }
            range.detach();
        }
        
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2016/10/09 02:11:46 - 2016-10-09
  2. 2016/10/09 00:21:01 - 2016-10-09
  3. 2016/10/09 00:20:24 - 2016-10-09
  4. 2016/10/06 20:50:44 - 2016-10-06
  5. 2016/10/06 20:49:13 - 2016-10-06
  6. 2016/03/12 13:34:43 - 2016-03-12
  7. 2016/03/12 13:31:01 - 2016-03-12
  8. 2013/12/17 21:48:36 - 2013-12-17
  9. 2013/12/17 21:41:23 - 2013-12-17
  10. 2013/12/17 21:40:51 - 2013-12-17
  11. 2013/12/15 04:41:41 - 2013-12-15
  12. 2013/12/15 04:39:19 - 2013-12-15
  13. 2013/07/26 22:12:08 - 2013-07-26
  14. 2013/04/23 02:20:03 - 2013-04-23
  15. 2013/04/22 10:19:35 - 2013-04-22
  16. 2013/04/22 10:18:02 - 2013-04-22
  17. 2013/04/22 10:15:27 - 2013-04-22