module Asciidoctor::SyntaxHighlighter::Config

def register_for *names

Returns nothing.

implementation. Symbol arguments are coerced to Strings.
names - one or more String or Symbol names with which to register the current class as a syntax highlighter

Public: Statically register the current class in the registry for the specified names.
def register_for *names
  SyntaxHighlighter.register self, *(names.map {|name| name.to_s })
end