PB_TABLE_HEADER_NOT_REPEATING
A table spans multiple pages but its header row does not repeat.
| Severity | warning |
| Category | rendering |
| Agent-repairable | Yes |
What happened
A table spans multiple pages but its header row does not repeat.
How to fix
Wrap the table header row in <thead> or add thead { display: table-header-group; } to your stylesheet.
The renderer will then repeat the thead content on every page the table spans.
Example
Before:
After:
In Markdown, use an HTML table block when you need explicit <thead> control, or
ensure your Markdown table has a header row separated by --- dashes (GFM standard).