Method: Nokogiri::XML::Node#write_xhtml_to

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

#write_xhtml_to(io, options = {}) ⇒ Object

Write Node as XHTML to io with options

See Node#write_to for a list of options

[View source]

1477
1478
1479
# File 'lib/nokogiri/xml/node.rb', line 1477

def write_xhtml_to(io, options = {})
  write_format_to(SaveOptions::DEFAULT_XHTML, io, options)
end