Skip to content

Commit 95fad7b

Browse files
committed
Merge pull request #9 from BitLucid/master
Link building: Add rel=nofollow.
2 parents 8c3e2c2 + 4c6edba commit 95fad7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jquery.linkify.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ function linkify(string, buildHashtagUrl, includeW3, target) {
99
} else {
1010
uri = captured;
1111
}
12-
return "<a href=\"" + uri+ "\" target=\"" + target + "\">" + captured + "</a>";;
12+
return "<a href=\"" + uri+ "\" target=\"" + target + "\" rel=\"nofollow\">" + captured + "</a>";;
1313
});
1414

1515
if (buildHashtagUrl) {
16-
string = string.replace(/\B#(\w+)/g, "<a href=" + buildHashtagUrl("$1") +" target=\"" + target + "\">#$1</a>");
16+
string = string.replace(/\B#(\w+)/g, "<a href=" + buildHashtagUrl("$1") +" target=\"" + target + "\" rel=\"nofollow\">#$1</a>");
1717
}
1818
return string;
1919
}

0 commit comments

Comments
 (0)