# File lib/html/element.rb, line 224
    def show_structure(indent = 0)
      puts(' ' * indent) + path
      elements.each { |node| node.show_structure(indent + 2) }
      nil
    end