bug fixed

This commit is contained in:
Lunny Xiao 2017-09-04 14:27:53 +08:00
parent 8335b556d1
commit c401788383
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A

View File

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