vote up 0 vote down star

I want to attach an xslt stylesheet to an XML document that I build with XMLBuilder. This is done with a Processing Instruction that looks like

<?xml-stylesheet type='text/xsl' href='/stylesheets/style.xslt' ?>

Normally, I'd use the instruct! method, but :xml-stylesheet is not a valid Ruby symbol.

XMLBuilder has a solution for this case for elements using tag! method, but I don't see the equivalent for Processing Instructions.

Any ideas?

flag

75% accept rate

2 Answers

vote up 2 vote down check

I'm not sure this will solve your problem since I don't know the instruct! method of that object, but :'xml-stylesheet' is a valid ruby symbol.

link|flag
duh that was easy :) Thank you! – ykaganovich Sep 26 '08 at 21:38
vote up 0 vote down

You do it like this:

xm.instruct! 'xml-stylesheet', {:href=>'/stylesheets/style.xslt', :type=>'text/xsl'}

Just add that line right after

xm.instruct! :xml, {:encoding=>"your_encoding_type"}

and before the rest of your document output code and you should be good to go.

link|flag

Your Answer

Get an OpenID
or

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