demarches-normaliennes/app/helpers/sanitize_with_link_helper.rb

7 lines
173 B
Ruby
Raw Normal View History

module SanitizeWithLinkHelper
def sanitize_with_link(value)
tags = Rails.configuration.action_view.sanitized_allowed_tags + ['a']
sanitize(value, tags:)
end
end