class Nokogiri::XSLT::Stylesheet

def apply_to(document, params = [])

See Nokogiri::XSLT::Stylesheet#transform for more information and examples.

A string containing the serialized result of the transformation.
[Returns]

- +params+ is an array of strings used as XSLT parameters, passed into #transform
- +document+ is an instance of XML::Document to transform
[Parameters]

equivalent to calling #serialize on the result of #transform.
Apply an XSLT stylesheet to an XML::Document and serialize it properly. This method is

apply_to(document, params = []) -> String
:call-seq:
def apply_to(document, params = [])
  serialize(transform(document, params))
end