module Asciidoctor::Extensions::MacroProcessorDsl

Public Instance Methods

resolve_attributes(*args) click to toggle source
# File lib/asciidoctor/extensions.rb, line 591
def resolve_attributes *args
  if args.size == 1 && !args[0]
    option :content_model, :text
  else
    super
    option :content_model, :attributes
  end
end
Also aliased as: resolves_attributes
resolves_attributes(*args)

NOTE resolves_attributes alias is deprecated

Alias for: resolve_attributes