// ==UserScript==
// @name del.icio.us comments replace URL
// @namespace http://opera.higeorange.com/
// @include http://del.icio.us/*
// ==/UserScript==

// 導入すると既にポストしたエントリを編集しようとした際に大変なことになるので注意

(function() {
    var comments = document.evaluate(
        '//p[@class="notes"]',
        document,
        null,
        XPathResult.ORDERED_NODE_ITERATOR_TYPE,
        null
    );
    var notes;
    while(notes = comments.iterateNext()) {
        notes.innerHTML = notes.innerHTML.replace(
            /(https?|ftp)(:\/\/[-_.!~*\'a-zA-Z0-9;\/?:\@&=+\$,%#]+)/g,
            '<a href="$&">$&</a>'
        );
    }
})();
