# encoding: utf-8
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
Prawn::Document.generate("inline_format_table.pdf") do
table([%w[foo bar bazbaz], %w[baz bar foofoo]],
:cell_style => { :padding => 12, :inline_format => true },
:width => bounds.width)
end