class Asciidoctor::Extensions::Registry
def docinfo_processors? location = nil
location - A Symbol for selecting docinfo extensions at a given location (:header or :footer) (default: nil)
Public: Checks whether any {DocinfoProcessor} extensions have been registered.
def docinfo_processors? location = nil if @docinfo_processor_extensions if location @docinfo_processor_extensions.find {|ext| ext.config[:location] == location } else true end else false end end