I want to render some text followed by a few single row tables. If I try the following:
pdf.text "Credit Card Number: "
4.times do
pdf.table [Array.new(4, Prawn::Text::NBSP)]
pdf.text " "
end
…each element ends up on its own line. Is there a simple way to make them render inline?
Just create table with subtables, like this: