class Asciidoctor::Converter::CompositeConverter

def convert_with_options node, transform = nil, opts = {}

Returns the String result returned from the delegate's convert method

opts - a optional Hash that is passed to the delegate's convert method. (default: {})
transform is specified. (default: nil)
transform - the optional String transform, or the name of the node if no
node - the AbstractNode to convert

option to the delegate's convert method.
handler for the given transform. The optional Hash is passed as the last
Public: Delegates to the first converter that identifies itself as the
def convert_with_options node, transform = nil, opts = {}
  transform ||= node.node_name
  # QUESTION should we check arity, or perhaps do a rescue ::ArgumentError?
  (converter_for transform).convert_with_options node, transform, opts
end