class Nokogiri::XML::Node
def after(node_or_tags)
Returns +self+, to support chaining of calls.
containing markup.
+node_or_tags+ can be a Nokogiri::XML::Node, a Nokogiri::XML::DocumentFragment, or a String
Insert +node_or_tags+ after this node (as a sibling).
###
def after(node_or_tags) add_next_sibling(node_or_tags) self end