Method: Nokogiri::XML::Node#to_xml
- Defined in:
- lib/nokogiri/xml/node.rb
permalink #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
1401 1402 1403 1404 |
# File 'lib/nokogiri/xml/node.rb', line 1401 def to_xml( = {}) [:save_with] ||= SaveOptions::DEFAULT_XML serialize() end |