class Shamu::Attributes::HtmlSanitation::SimpleScrubber

Public Instance Methods

allowed_element?( name ) click to toggle source
# File lib/shamu/attributes/html_sanitation.rb, line 199
def allowed_element?( name )
  SIMPLE_TAGS.include?( name.upcase )
end