# File lib/Borges/HTML/HtmlElement.rb, line 43 def initialize(name, attributes = nil) @children = [] @name = (name.kind_of? String) ? name.downcase.intern : name @attributes = attributes.nil? ? Borges::HtmlAttributes.new : attributes end