class RDoc::Markup::Table
A section of table
Attributes
Public Class Methods
Source
# File lib/rdoc/markup/table.rb, line 8 def initialize header, align, body @header, @align, @body = header, align, body end
Public Instance Methods
Source
# File lib/rdoc/markup/table.rb, line 12 def == other self.class == other.class and @header == other.header and @align == other.align and @body == other.body end
Source
# File lib/rdoc/markup/table.rb, line 19 def accept visitor visitor.accept_table @header, @body, @align end