module Asciidoctor::Converter::Factory

def for backend

Returns the [Converter] class registered to convert the specified backend or nil if no match is found.

backend - The String backend name.

Public: Lookup the custom converter registered with this factory to handle the specified backend.
def for backend
  registry[backend]
end