How do I add a XML comment between 2 element nodes in REXML? I've read the documentation over and over, but I just can't find out...
Best regards,
Jari Williamsson
How do I add a XML comment between 2 element nodes in REXML? I've read the documentation over and over, but I just can't find out...
Best regards,
Jari Williamsson
require "rexml/document"
doc = REXML::Document.new('<root/>')
doc.root << REXML::Element.new('elem1')
doc.root << REXML::Comment.new('this is a comment')
res = doc.to_s # => "<root><elem1/><!--this is a comment--></root>"
Jari Williamsson wrote:
How do I add a XML comment between 2 element nodes in REXML? I've read the documentation over and over, but I just can't find out...
Best regards,
Jari Williamsson