Is it possible to indent a complete paragraph of text with Prawn?

So not just the first line of a paragraph like :indent_paragraphs => some_number does? But all the text in that paragraph.

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Try this:

Prawn::Document.generate('indented.pdf') do |pdf|
  pdf.indent(20) do
    pdf.text "indented paragraph"
  end
end
link|improve this answer
works like a charm, thanks! – Menno Apr 29 '11 at 8:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.