Class Nokogiri::XSLT::Stylesheet
In: lib/nokogiri/ffi/xslt/stylesheet.rb
lib/nokogiri/xslt/stylesheet.rb
ext/nokogiri/xslt_stylesheet.c
Parent: Object

call-seq:

  register(uri, custom_handler_class)

Register a class that implements custom XLST transformation functions.

Methods

Public Class methods

Parse a stylesheet from document.

Public Instance methods

Apply an XSLT stylesheet to an XML::Document. params is an array of strings used as XSLT parameters. returns serialized document

Serialize document to an xml string.

Apply an XSLT stylesheet to an XML::Document. params is an array of strings used as XSLT parameters. returns Nokogiri::XML::Document

Example:

  doc   = Nokogiri::XML(File.read(ARGV[0]))
  xslt  = Nokogiri::XSLT(File.read(ARGV[1]))
  puts xslt.transform(doc, ['key', 'value'])

[Validate]