new(parent, title, comment)
  public
  
    
    
Creates a new section
with title and comment
   
  
    Show source    
    
      
  def initialize parent, title, comment
    @parent = parent
    @title = title ? title.strip : title
    @@sequence.succ!
    @sequence = @@sequence.dup
    @comments = []
    add_comment comment
  end