class RDoc::Markup::ToJoinedParagraph
Joins the parts of an RDoc::Markup::Paragraph
into a single String.
This allows for easier maintenance and testing of Markdown support.
This formatter only works on Paragraph instances. Attempting to process other markup syntax items will not work.
Public Instance Methods
accept_paragraph(paragraph)
click to toggle source
Converts the parts of paragraph
to a single entry.
# File rdoc/markup/to_joined_paragraph.rb, line 25 def accept_paragraph paragraph parts = paragraph.parts.chunk do |part| String === part end.flat_map do |string, chunk| string ? chunk.join.rstrip : chunk end paragraph.parts.replace parts end