Method: Nokogiri::XML::Node#to_xml

Defined in:
lib/nokogiri/xml/node.rb

#to_xml(options = {}) ⇒ Object

Serialize this Node to XML using options

doc.to_xml(indent: 5, encoding: 'UTF-8')

See Node#write_to for a list of options

[View source]

1401
1402
1403
1404
# File 'lib/nokogiri/xml/node.rb', line 1401

def to_xml(options = {})
  options[:save_with] ||= SaveOptions::DEFAULT_XML
  serialize(options)
end