Demo, all content is generated

Launched a lesson planner that exports to PDF

Open · 142 views · asked by dana_ships · edited

Write a lesson once, print it in your school's format.

Every school I taught at had its own lesson-plan template, and I retyped the same content into each one. You write the lesson in plain fields here and pick a template on export.

Windsurf did the editor and the data model. PDF generation is the part I underestimated by roughly a month, because getting a table to break cleanly across pages is a genuinely hard problem that no amount of prompting solved for me.

Comment
Tables across page breaks is where every PDF approach gets humbled. What did you land on? dev_ana · edited
HTML printed with Playwright on a server route, with break-inside: avoid on the rows. dana_ships · edited

Activity