demarches-normaliennes/app/helpers/string_to_html_helper.rb

8 lines
247 B
Ruby
Raw Normal View History

module StringToHtmlHelper
def string_to_html(str)
html_formatted = simple_format(str)
with_links = html_formatted.gsub(URI.regexp, '<a target="_blank" href="\0">\0</a>')
2018-10-01 13:55:12 +02:00
sanitize(with_links, attributes: ['href', 'target'])
end
end