class RDoc::Markup::Verbatim
A section of verbatim text
Attributes
Format of this verbatim section
Public Instance Methods
Source
# File lib/rdoc/markup/verbatim.rb, line 25 def accept visitor visitor.accept_verbatim self end
Calls accept_verbatim on visitor
Source
# File lib/rdoc/markup/verbatim.rb, line 32 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
Collapses 3+ newlines into two newlines
Source
# File lib/rdoc/markup/verbatim.rb, line 71 def ruby? @format ||= nil # TODO for older ri data, switch the tree to marshal_dump @format == :ruby end
Is this verbatim section Ruby code?
Source
# File lib/rdoc/markup/verbatim.rb, line 79 def text @parts.join end
The text of the section