module Psychgus::Stylables::NoTagStylable

(see Stylers::NoTagStyler)

Public Instance Methods

style(sniffer,node) click to toggle source

If node.tag is settable, set it to nil.

@see Styler#style

# File lib/psychgus/stylables.rb, line 231
def style(sniffer,node)
  node.tag = nil if node.respond_to?(:tag=)
end