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
The SEPARATING_LINE macro works only with the default style.
SEPARATING_LINE
This is the sample data:
table = [ ["A", 1, 2], ["B", 3, 4], SEPARATING_LINE, ["C", 5, 6], ["D", 7, 8], ]
Printing with the default style produces the correct output:
print(tabulate(table)) - - - A 1 2 B 3 4 - - - C 5 6 D 7 8 - - -
Using the outline format gives wrong output instead:
outline
print(tabulate(table, tablefmt="outline")) +---+---+---+ | A | 1 | 2 | | B | 3 | 4 | | � | | C | 5 | 6 | | D | 7 | 8 | +---+---+---+
The text was updated successfully, but these errors were encountered:
It also doesn't work with html format. It seems to cause the table to end.
html
Sorry, something went wrong.
No branches or pull requests
The
SEPARATING_LINE
macro works only with the default style.This is the sample data:
Printing with the default style produces the correct output:
Using the
outline
format gives wrong output instead:The text was updated successfully, but these errors were encountered: