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() { .each(function() {
$(this).each(function() { $(this).each(function() {
if (re.test($(this).text())) if (re.test($(this).text()))
$(this).replaceWith( if($(this).parents().filter('code').length === 0) {
$("<span />").html( $(this).replaceWith(
this.nodeValue.replace(re, "<a href='$1'>$1</a>") $("<span />").html(
) this.nodeValue.replace(re, "<a href='$1'>$1</a>")
); )
);
};
}); });
}); });
}; };
Loading…
Cancel
Save