bug fixed
This commit is contained in:
parent
8335b556d1
commit
c401788383
|
@ -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…
Reference in New Issue
Block a user