demarches-normaliennes/app/helpers/sanitize_with_link_helper.rb

9 lines
204 B
Ruby
Raw Permalink Normal View History

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