You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
15 lines
349 B
# frozen_string_literal: true
|
|
|
|
class HtmlValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
return if value.blank?
|
|
record.errors.add(attribute, I18n.t('html_validator.invalid_markup')) unless valid_html?(value)
|
|
end
|
|
|
|
private
|
|
|
|
def valid_html?(str)
|
|
Nokogiri::HTML.fragment(str).to_s == str
|
|
end
|
|
end
|