class RDoc::Markup::Table

A section of table

Attributes

alignments of each column

body texts of each column

headers of each column

Public Class Methods

Creates new instance

# File lib/rdoc/markup/table.rb, line 16
def initialize header, align, body
  @header, @align, @body = header, align, body
end