123456789_123456789_123456789_123456789_123456789_

Class: RDoc::Markup::BlockQuote

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Raw
Instance Chain:
self, Raw
Inherits: RDoc::Markup::Raw
Defined in: lib/rdoc/markup/block_quote.rb

Overview

A quoted section which contains markup items.

Class Method Summary

Raw - Inherited

.new

Creates a new Raw containing parts

Instance Attribute Summary

Raw - Inherited

#parts

The component parts of the list.

Instance Method Summary

Raw - Inherited

#<<

Appends text

#accept

Calls #accept_raw+ on visitor

#merge

Appends other‘s parts.

#push

Appends texts onto this Paragraph.

#text

The raw text.

#==, #pretty_print

Constructor Details

This class inherits a constructor from RDoc::Markup::Raw

Instance Method Details

#accept(visitor)

Calls #accept_block_quote on visitor

[ GitHub ]

  
# File 'lib/rdoc/markup/block_quote.rb', line 10

def accept visitor
  visitor.accept_block_quote self
end