X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e0cbfe24a5d1ac9d87c80f1a4a2c379613190411..b9822fa3f4576f0d5fd7e1efef20ebf832e97100:/app/helpers/application_helper.rb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index ab0ba82a8..d805e27ad 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1,6 +1,10 @@ module ApplicationHelper def htmlize(text) - return sanitize(auto_link(simple_format(text), :urls)) + return linkify(sanitize(simple_format(text))) + end + + def linkify(text) + return auto_link(text, :link => :urls, :html => { :rel => "nofollow" }) end def html_escape_unicode(text)