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 lib/rdoc/markup/raw.rb, line 14
def initialize *parts
  @parts = []
  @parts.concat parts
end
Instance Public methods
<<(text)

Appends text

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

Calls accept_raw+ on visitor

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

Appends other's parts

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

Appends texts onto this Paragraph

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

The raw text

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