# File lib/Borges/HTML/HtmlBuilder.rb, line 105
  def fieldset(legend, &block)
    tag_do(:fieldset, proc do
      tag_do(:legend, legend)
      block.call
    end)
  end