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
Row
noheader
true
When printing a table with the row column and without the header, we should not take into account the size of Row to align the row column:
julia> v = 0:1:6 0:1:6 julia> pretty_table(v;noheader = true, show_row_number = true) ┌─────┬───┐ │ 1 │ 0 │ │ 2 │ 1 │ │ 3 │ 2 │ │ 4 │ 3 │ │ 5 │ 4 │ │ 6 │ 5 │ │ 7 │ 6 │ └─────┴───┘
The text was updated successfully, but these errors were encountered:
3f54542
No branches or pull requests
When printing a table with the row column and without the header, we should not take into account the size of
Row
to align the row column:The text was updated successfully, but these errors were encountered: