Method: ReVIEW::LATEXBuilder#dd

Defined in:
lib/review/latexbuilder.rb

#dd(lines) ⇒ Object



369
370
371
372
373
374
375
# File 'lib/review/latexbuilder.rb', line 369

def dd(lines)
  if @book.config['join_lines_by_lang']
    puts join_lines_to_paragraph(lines)
  else
    puts lines.map(&:chomp).join("\n")
  end
end