Add XSL stylesheet using Nokogiri

Hi there.

I am generating a XML file using Nokogiri. I would like to add a XSL
stylesheet reference to the document. By XSL stylesheet reference I mean

<?xsl-stylesheet type="text/xsl" href="foo.xsl"?>

I haven’t found a way to do this with Nokogiri. Does anyone know a
solution to my problem? Any help is appreciated.

Thank your very much. For some reason I wasn’t able to find any material
about that issue through Google. Quite disappointing answer though.

On Thu, Nov 25, 2010 at 3:09 PM, niklas | brueckenschlaeger <
[email protected]> wrote:

OMG, there is so much fail here, I don’t know where to start.

Instead, I will simply submit the correct method without further
comment:

require “nokogiri”

doc = Nokogiri::XML “foo”
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"?>

foo

Great. Thank you. I didn’t know that.

On Mon, Nov 29, 2010 at 9:17 AM, niklas | brueckenschlaeger <
[email protected]> wrote:

Great. Thank you. I didn’t know that.

I’ve added a section on PI nodes to nokogiri.org:
http://nokogiri.org/tutorials/modifying_an_html_xml_document.html

(see
https://github.com/flavorjones/nokogiri.org-tutorials/commit/8ccd0deff8dbe7fb0d12aa66521340596a673f0a
for
raw commit)