class Asciidoctor::Extensions::Registry

def docinfo_processors location = nil

Returns an [Array] of Extension proxy objects.

location - A Symbol for selecting docinfo extensions at a given location (:head or :footer) (default: nil)

DocinfoProcessor instances stored in this registry.
Public: Retrieves the {Extension} proxy objects for all the
def docinfo_processors location = nil
  if @docinfo_processor_extensions
    if location
      @docinfo_processor_extensions.select {|ext| ext.config[:location] == location }
    else
      @docinfo_processor_extensions
    end
  else
    nil
  end
end