# File lib/Borges/HTML/HtmlBuilder.rb, line 300
  def url_anchor(url, obj = nil, &block)
    @attributes['href'] = url
    return tag_do('a', obj) unless obj.nil?
    return tag_do('a', block)
  end