michaelrsweet / htmldoc

HTML Conversion Software
https://www.msweet.org/htmldoc
GNU General Public License v2.0
206 stars 46 forks source link

Truncated cell #520

Closed alexgoa closed 5 months ago

alexgoa commented 5 months ago

hello, in all versions I've found that the TD could end up being truncated at the end of a page and continue in the next page. Sometime I need to keep together in the same page either a TD or a Table. Could we implement such a feature? In case there's something like that already my apologies: please tell me how to keep together TD or Table. thanks very much great job for me, great help.

michaelrsweet commented 5 months ago

Right now can use comments to specify the expected height of a row, e.g.:

<!-- NEED 1in -->
<tr><td>...</td></tr>

Beyond that there is no support for the CSS "page-break-xxx" properties at this time, which would be the "normal" way to do this with HTML in general.