Class: RDoc::Markup::HardBreak

Inherits:
Object
  • Object
show all
Defined in:
lib/rdoc/markup/hard_break.rb

Overview

A hard-break in the middle of a paragraph.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.newObject

RDoc::Markup::HardBreak is a singleton



11
12
13
# File 'lib/rdoc/markup/hard_break.rb', line 11

def self.new
  @instance
end

Instance Method Details

#==(other) ⇒ Object

:nodoc:



22
23
24
# File 'lib/rdoc/markup/hard_break.rb', line 22

def == other # :nodoc:
  self.class === other
end

#accept(visitor) ⇒ Object

Calls #accept_hard_break on visitor



18
19
20
# File 'lib/rdoc/markup/hard_break.rb', line 18

def accept visitor
  visitor.accept_hard_break self
end

#pretty_print(q) ⇒ Object

:nodoc:



26
27
28
# File 'lib/rdoc/markup/hard_break.rb', line 26

def pretty_print q # :nodoc:
  q.text "[break]"
end