From 606c01e1686143ff77d03c07a890e01a8f1b6054 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sat, 4 Aug 2012 22:34:18 -0700 Subject: [PATCH] Links should be rel="nofollow" Though if this ever becomes relevant, something else has gone wrong. --- webclient/rc.html | 1 + 1 file changed, 1 insertion(+) diff --git a/webclient/rc.html b/webclient/rc.html index 01dc168..3b92348 100644 --- a/webclient/rc.html +++ b/webclient/rc.html @@ -230,6 +230,7 @@ text_span.appendChild(document.createTextNode(leading_text)); } var anchor = document.createElement("a"); + anchor.setAttribute("rel", "nofollow"); anchor.setAttribute("href", encodeURI(match[0])); anchor.appendChild(document.createTextNode(match[0])); text_span.appendChild(anchor); -- 2.44.1