# File lib/nokogiri/xml/node.rb, line 312 def inner_html= node_or_tags node_or_tags = coerce(node_or_tags) children.unlink if node_or_tags.is_a?(XML::NodeSet) node_or_tags.each { |n| add_child_node n } else add_child node_or_tags end self end