8 lines
204 B
Ruby
8 lines
204 B
Ruby
# 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
|