Method: ReVIEW::LATEXBuilder#paragraph
- Defined in:
- lib/review/latexbuilder.rb
#paragraph(lines) ⇒ Object
382 383 384 385 386 387 388 389 390 |
# File 'lib/review/latexbuilder.rb', line 382 def paragraph(lines) blank if @book.config['join_lines_by_lang'] puts join_lines_to_paragraph(lines) else lines.each { |line| puts line } end blank end |