# File ../../../../../lib/review/unfold.rb, line 30 def initialize(indent_paragraph = false) @indent_paragraph = indent_paragraph end
# File ../../../../../lib/review/unfold.rb, line 26 def Unfold.unfold(f) new().unfold(f) end
unfold(f) -> String unfold(input, output) -> nil
# File ../../../../../lib/review/unfold.rb, line 36 def unfold(input, output = nil) if output @output = output do_unfold input nil else @output = StringIO.new do_unfold input @output.string end end