Method: XRay::HTML::Element#outer_html

Defined in:
lib/html/struct.rb

#outer_htmlObject



57
58
59
60
61
62
63
64
# File 'lib/html/struct.rb', line 57

def outer_html
  if children.empty?
    "<#{@tag}#{prop_text} />"
  else
    cls = ending || "</#{@tag}>"
    "<#{@tag}#{prop_text}>#{inner_html}#{cls}"
  end
end