class RDoc::Markup::Table
A section of table
Attributes
              align[RW]
            
            alignments of each column
              body[RW]
            
            body texts of each column
              header[RW]
            
            headers of each column
Public Class Methods
                              new(header, align, body)
                              click to toggle source
                            
                            Creates new instance
# File rdoc/markup/table.rb, line 16 def initialize header, align, body @header, @align, @body = header, align, body end