私は自分のデータベースからテーブルを表示するRailsでPDFKitを使用しています。各テーブルに独自の個別のページを持たせたい。どうすればこれを達成できますか?
html = "<p>HTML content here</p>"
kit = PDFKit.new(html, :page_size => 'Letter')
output = kit.to_pdf
respond_to do |format|
format.pdf do
send_data output, :filename => "trading_analysis.pdf",
:type => "application/pdf"
end
end