module Asciidoctor::Converter::Factory

def self.new converters = nil, proxy_default: true

Returns a Factory instance (DefaultFactoryProxy or CustomFactory) seeded with the optional converters map.

proxy_default - A Boolean keyword arg indicating whether to proxy the default registry (optional, default: true).
backend names and the values are converter classes or instances.
converters - An optional Hash of converters to use in place of ones in the default registry. The keys are

entries in the proxy registry are preferred over matching entries from the default registry.
arg is set (true by default), and optionally seed it with the specified converters map. If proxy_default is set,
Public: Create an instance of DefaultProxyFactory or CustomFactory, depending on whether the proxy_default keyword
def self.new converters = nil, proxy_default: true
  proxy_default ? (DefaultFactoryProxy.new converters) : (CustomFactory.new converters)
end