class RDoc::Markup::Table

def ==(other)

:stopdoc:
def ==(other)
  self.class == other.class and
    @header == other.header and
    @align == other.align and
    @body == other.body
end