A section of verbatim text
Methods
    
  
  
  
    
    
    
    
      
      Attributes
      | [RW] | format | Format of this verbatim section  | 
          
Instance Public methods
      
        
            
              accept(visitor)
            
            Link
          
          
          
            Calls accept_verbatim on visitor
            
              normalize()
            
            Link
          
          
          
            Collapses 3+ newlines into two newlines
# File lib/rdoc/markup/verbatim.rb, line 31 def normalize parts = [] newlines = 0 @parts.each do |part| case part when /^\s*\n/ then newlines += 1 parts << part if newlines == 1 else newlines = 0 parts << part end end parts.pop if parts.last =~ /\A\r?\n\z/ @parts = parts end
            
              ruby?()
            
            Link
          
          
          
            Is this verbatim section ruby code?