module Asciidoctor::Converter::Config

def register_for *backends

Returns nothing.

backends - One or more String backend names with which to associate this {Converter} class.

Public: Registers this {Converter} class with the default registry to handle the specified backend name(s).
def register_for *backends
  Converter.register self, *(backends.map {|backend| backend.to_s })
end