Hacked By AnonymousFox

Current Path : /proc/thread-self/root/opt/alt/ruby24/lib64/ruby/2.4.0/rdoc/markup/
Upload File :
Current File : //proc/thread-self/root/opt/alt/ruby24/lib64/ruby/2.4.0/rdoc/markup/paragraph.rb

# frozen_string_literal: false
##
# A Paragraph of text

class RDoc::Markup::Paragraph < RDoc::Markup::Raw

  ##
  # Calls #accept_paragraph on +visitor+

  def accept visitor
    visitor.accept_paragraph self
  end

  ##
  # Joins the raw paragraph text and converts inline HardBreaks to the
  # +hard_break+ text.

  def text hard_break = ''
    @parts.map do |part|
      if RDoc::Markup::HardBreak === part then
        hard_break
      else
        part
      end
    end.join
  end

end


Hacked By AnonymousFox1.0, Coded By AnonymousFox