Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to associate a stylesheet with with Nokogiri, to create this structure?

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://www.my-site.com/sitemap.xsl"?>
<root>
  ...
</root>
share|improve this question

2 Answers

OMG, there is so much fail here that I am breaking the unofficial policy of Team Nokogiri and am providing the correct, sane answer to this question:

require "nokogiri"

doc = Nokogiri::XML "<root>foo</root>"
doc.root.add_previous_sibling Nokogiri::XML::ProcessingInstruction.new(doc, "xml-stylesheet", 'type="text/xsl" href="foo.xsl"')
puts doc.to_xml
# => <?xml version="1.0"?>
#    <?xml-stylesheet type="text/xsl" href="foo.xsl"?>
#    <root>foo</root>

In the future, please ask questions about Nokogiri on the nokogiri-talk mailing list (http://groups.google.com/group/nokogiri-talk), get the correct answer in a timely fashion, and save everyone a little effort.

share|improve this answer
Please also note that the above method has been added to the nokogiri.org tutorial: nokogiri.org/tutorials/modifying_an_html_xml_document.html – Mike Dalessio Nov 29 '10 at 15:18
good to see you pop up. It's hard to get every Nokogiri question to use the mailing list, humans being as they are. I think it'd be great if there was a way to redirect Nokogiri questions to the list automagically, or at least have them echoed there, but I doubt that will happen either. What's the chance of you and/or Aaron poking your head in regularly? – the Tin Man Nov 29 '10 at 20:38
up vote -1 down vote accepted

There is not.

The way I did it:

xml.gsub!("<?xml version=\"1.0\"?>") do |head|
  result = head
  result << "\n"
  result << "<?xml-stylesheet type=\"text/xsl\" href=\"#{stylesheet}\"?>"
end

Cheers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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