Page 1 of 1

Table hyphenation in PDF output

Posted: Wed Oct 08, 2025 9:04 pm
by CQatCN
How do I stop the PDF transformation from automatically hyphenating at end of line?
I'm using PDF (CSS Formatter - HTML5 transformation).
image.png

Re: Table hyphenation in PDF output

Posted: Thu Oct 09, 2025 9:43 am
by julien_lacour
Hello,

By default, hyphenation is enabled in tables but you can override this property in the CSS:

Code: Select all

*[class ~= "topic/table"] {
  hyphens: manual;
}
Regards,
Julien