release/v1.1
Lunny Xiao 7 years ago
parent 8335b556d1
commit c401788383
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A

@ -5,11 +5,13 @@ jQuery.fn.autolink = function() {
.each(function() {
$(this).each(function() {
if (re.test($(this).text()))
$(this).replaceWith(
$("<span />").html(
this.nodeValue.replace(re, "<a href='$1'>$1</a>")
)
);
if($(this).parents().filter('code').length === 0) {
$(this).replaceWith(
$("<span />").html(
this.nodeValue.replace(re, "<a href='$1'>$1</a>")
)
);
};
});
});
};
Loading…
Cancel
Save