lib/prawn_html/tags/tbody.rb



# frozen_string_literal: true

module PrawnHtml
  module Tags
    class Tbody < Tag
      ELEMENTS = [:tbody].freeze

      def block?
        true
      end
    end
  end
end