A section of text that is added to the output document as-is

Methods
#
A
M
N
P
T
Attributes
[R] parts

The component parts of the list

Class Public methods
new(*parts)

Creates a new Raw containing parts

# File ../ruby/lib/rdoc/markup/raw.rb, line 14
def initialize *parts
  @parts = []
  @parts.push(*parts)
end
Instance Public methods
<<(text)

Appends text

# File ../ruby/lib/rdoc/markup/raw.rb, line 22
def << text
  @parts << text
end
accept(visitor)

Calls accept_raw+ on visitor

# File ../ruby/lib/rdoc/markup/raw.rb, line 33
def accept visitor
  visitor.accept_raw self
end
merge(other)

Appends other's parts

# File ../ruby/lib/rdoc/markup/raw.rb, line 40
def merge other
  @parts.push(*other.parts)
end
push(*texts)

Appends texts onto this Paragraph

# File ../ruby/lib/rdoc/markup/raw.rb, line 57
def push *texts
  self.parts.push(*texts)
end
text()

The raw text

# File ../ruby/lib/rdoc/markup/raw.rb, line 64
def text
  @parts.join ' '
end