X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/17445a44da9aaeb24e136c5fc6fc3634e6f10539..58bb08aba8d55ee1b897f0846688ea642a409e77:/app/helpers/application_helper.rb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 2eebec170..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), :link => :urls, :html => { :rel => "nofollow" })) + 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)