# File lib/Borges/HTML/HtmlBuilder.rb, line 166
  def paragraph(obj = nil, &block)
    return tag_do('p', obj) unless obj.nil?
    return tag('p') if block.nil?
    return tag_do('p', block)
  end