class Asciidoctor::Extensions::MacroProcessor
def config
def config @config ||= {} end
def initialize(name, document, opts = {})
def initialize(name, document, opts = {}) super(document) @name = name @options = self.class.config.dup @options.update(opts) end
def option(key, default_value)
def option(key, default_value) config[key] = default_value end
def process parent, target, attributes, source = nil
def process parent, target, attributes, source = nil nil end