Paperbase Docs

PB_PAGE_BREAK_INSIDE_BLOCK

A content block was split across a page boundary in a way that hurts readability.

Severitywarning
Categoryrendering
Agent-repairableYes

What happened

A content block was split across a page boundary in a way that hurts readability.

How to fix

Add page-break-inside: avoid (or break-inside: avoid) to the affected element. Paperbase applies this automatically to figures, code blocks, and table rows; if a different element was affected, add it explicitly.

.your-class { break-inside: avoid; }

Example

Before:

<div class="callout">Long content that spans pages...</div>

After:

<div class="callout" style="break-inside: avoid">Long content that spans pages...</div>

On this page