We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I consider the table :
| aaaaaaaaaaaa | bbbbb | ccccccccccc | | --- | --- | --- | | | | cccccccccc cccccccccc cccccccccc cccccccccc cccccccccc cccccccccc |
The resulted table won't break the long line because the total line's width (65) does not exceed the column width (72).
Is is not exactly a bug because that is what the manual says:
if no lines are wider than column width, then cell contents will not be wrapped, and the cells will be sized to their contents
However, the table width exceeds the frame size. Do you think it is possible to check the sum of each column's maximum width (here 12+5+65 = 82) ?
The text was updated successfully, but these errors were encountered:
That makes sense.
Sorry, something went wrong.
79e6f8d
No branches or pull requests
If I consider the table :
The resulted table won't break the long line because the total line's width (65) does not exceed the column width (72).
Is is not exactly a bug because that is what the manual says:
However, the table width exceeds the frame size. Do you think it is possible to check the sum of each column's maximum width (here 12+5+65 = 82) ?
The text was updated successfully, but these errors were encountered: