class Asciidoctor::AbstractNode

def set_option(name)

TODO document me
def set_option(name)
  if @attributes.has_key? 'options'
    @attributes['options'] = "#{@attributes['options']},#{name}"
  else
    @attributes['options'] = name
  end
  @attributes["#{name}-option"] = ''
end