Problem
The title page centering block is not wrapped in #block(breakable: false). If the metadata combination runs long (long title + author + director + contact), the block could split across pages. Title pages should never split.
Current state
src-tauri/src/screenplay/pdf.rs ~line 559 and the centered title content rendered afterwards do not enforce unbreakability.
Suggested fix
Wrap the centered title/credits content in #block(breakable: false)[...]. If the content still overflows, that becomes a separate bug we can diagnose (but silent splitting is worse than an overflow warning).
Problem
The title page centering block is not wrapped in
#block(breakable: false). If the metadata combination runs long (long title + author + director + contact), the block could split across pages. Title pages should never split.Current state
src-tauri/src/screenplay/pdf.rs~line 559 and the centered title content rendered afterwards do not enforce unbreakability.Suggested fix
Wrap the centered title/credits content in
#block(breakable: false)[...]. If the content still overflows, that becomes a separate bug we can diagnose (but silent splitting is worse than an overflow warning).