rstudio / pagedown

Paginate the HTML Output of R Markdown with CSS for Print
https://pagedown.rbind.io
Other
894 stars 127 forks source link

Fix duplicating headers in tables that force new page #272

Closed Darxor closed 2 years ago

Darxor commented 2 years ago

This PR fixes #265.

Issue was that hook went over breakTokens that also happened to be <table> tags, and did not check whether this breakToken was due to table actually splitting or due to <table> having break-before: page; property.

I my testing, adding a check for data-split-from attribute is enough.