class Shamu::Attributes::HtmlSanitation::BodyScrubber

Public Instance Methods

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