Implementing XSLT in rss feed

HI ,

Can anyone help me in implementing rss feed with stylesheet of user’s
choice…

xml.instruct! :xml, :version=>“1.0”
xml.foods{
for food in @foods
xml.food do
xml.id(food.id)
xml.calroies(food.calories)
xml.description(food.description)
xml.short_description(food.short_description)

        for portion in food.portions
            xml.portion do
                xml.grams(portion.grams)
                xml.amount(portion.amount)
                xml.serving(portion.serving)
            end
        end
    end
end

}

the above code generates rss like this

<?xml version="1.0" encoding="UTF-8" ?> 9193 115 Olives, ripe, canned (small-extra large) Olives,Ripe,Cnd (Small-Extra Lrg) 8.4 1.0 tbsp . . . .

but i want to include the root tag of XSL sheet in the generated rss

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

can anyone help me in this…

thanks for ur ideas…

regards
krishna

but i want to include the root tag of XSL sheet in the generated rss

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

can anyone help me in this…

xml.instruct! ‘xml-stylesheet’, :type => “text/xsl”, :href =>
“cdcatalog.xsl”

will work

zhelee