Files
nairobi/app/helpers/text_with_links_helper.rb
2015-09-10 20:42:57 +02:00

10 lines
227 B
Ruby

module TextWithLinksHelper
def text_with_links(text)
return unless text
sanitized = sanitize text, tags: [], attributes: []
Rinku.auto_link(sanitized, :all, 'target="_blank" rel="nofollow"').html_safe
end
end