Sha256: 0dd57a4e415cd11b48005075bee9ecc334e2f50ff0b1d2fd89f503926268c084
Contents?: true
Size: 965 Bytes
Versions: 8
Compression:
Stored size: 965 Bytes
Contents
# encoding: utf-8 # # Prawn strips all whitespace from the beginning and the end of strings so there # are two ways to indent paragraphs: # # One is to use non-breaking spaces which Prawn won't strip. One shortcut to # using them is the <code>Prawn::Text::NBSP</code>. # # The other is to use the <code>:indent_paragraphs</code> option with the text # methods. Just pass a number with the space to indent the first line in each # paragraph. # require File.expand_path(File.join(File.dirname(__FILE__), %w[.. example_helper])) filename = File.basename(__FILE__).gsub('.rb', '.pdf') Prawn::Example.generate(filename) do # Using non-breaking spaces text " " * 10 + "This paragraph won't be indented. " * 10 + "\n#{Prawn::Text::NBSP * 10}" + "This one will with NBSP. " * 10 move_down 20 text "This paragraph will be indented. " * 10 + "\n" + "This one will too. " * 10, :indent_paragraphs => 60 end
Version data entries
8 entries across 8 versions & 2 rubygems