class HTML::Tag

def initialize(parent, line, pos, name, attributes, closing)

closing status extracted.
to describe the node. It will be parsed and the node name, attributes and
Create a new node as a child of the given parent, using the given content
def initialize(parent, line, pos, name, attributes, closing)
  super(parent, line, pos)
  @name = name
  @attributes = attributes
  @closing = closing
end