I am writing an xml exporter in ruby and I am using libxml package for it. I want to write some comment nodes outside the root element

<?xml version="1.0" encoding="UTF-8"?>
<!-- comment -->
<root>
 <childnode />
</root>

How do I accomplish export to above format?

Sample ruby code to generate the above (without accounting for comment node)

doc = XML::Document.new()
rootNode = XML::Node.new('root')
doc.root = rootNode
childNode = XML::Node.new('childnode')
childnode << rootNode
link|improve this question

73% accept rate
Only operation i can do on the documnet object is setting its root – Schu Aug 25 '11 at 18:29
However, I can create comment nodes and add them under the root node – Schu Aug 25 '11 at 18:30
Nokogiri lets you do that. Nokogiri is based on libxml2 too and is a better wrapper than ruby-libxml. – Serabe Aug 27 '11 at 11:50
i tried nokogiri as well. i use builder to export. so within the builder code, we have some how create the comment node. Based on the nokogiri API, i need to get hold of "Document" from the builder object to add a comment, which I wasnt able to figure out. – Schu Aug 27 '11 at 15:04
1  
Take a look at last part here – Serabe Aug 27 '11 at 17:32
show 1 more comment
feedback

2 Answers

up vote 0 down vote accepted

ended up editing the xml string manually to add the comments outside the root node (for both libxml and nokogiri

link|improve this answer
feedback
<?xml version="1.0" encoding="UTF-8" ?>
<List type = "" =”00:75:00” =”00:00:05”>

</List>

Yes

<?xml version="1.0" encoding="UTF-8" ?>
<List type = "update" >
</List>
link|improve this answer
what is your post about? – Schu Sep 8 '11 at 13:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.