Nokogiri::XSLT::Stylesheet

class Nokogiri::XSLT::Stylesheet

Parent:
Object

A Stylesheet represents an XSLT Stylesheet object. Stylesheet creation is done through Nokogiri.XSLT. Here is an example of transforming an XML::Document with a Stylesheet:

doc   = Nokogiri::XML(File.read('some_file.xml'))
xslt  = Nokogiri::XSLT(File.read('some_transformer.xslt'))

puts xslt.transform(doc)

See #transform for more transformation information.

登录查看完整内容