module Nokogiri::XSLT

def register(uri, custom_handler_class)


See Nokogiri::XSLT.parse for usage.

transformation
- +custom_handler_class+ (Class) A class with ruby methods that can be called during
- +uri+ (String) The namespace for the custom handlers
[Parameters}

⚠ The XSLT handler classes are registered *globally*.

Register a class that implements custom XSLT transformation functions.

register(uri, custom_handler_class)
call-seq:
def register(uri, custom_handler_class)
  # NOTE: this is implemented in the C extension, see ext/nokogiri/xslt_stylesheet.c
  raise NotImplementedError, "Nokogiri::XSLT.register is not implemented on JRuby"
end if Nokogiri.jruby?