-
-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
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
Minimal format but with spaces between the columns #34
Comments
Thank you, that covers one of the two questions. The other is the space divider between columns without having padding. In a unit test, this is what I expected would work but didn't.
It appears that when I have this:
It collapses the divider space entirely instead of giving me a blank line. So I get this divider:
If I change the above BottomCenter to
I would like to know how I could get that unit test output (I might be off on the dashes though on the header). |
It's because it has fallback from I will try to open a toggle to block the fallback |
I like the minimal format, except I find the solid bar for the headers to be difficult to parse the columns.
So, I thought I would try to make a version that had spaces in it:
But what I found was if both
BottomCenter
andDivider
are spaces (' '
), then the space is collapsed between the two of them which squishes the columns together. I ended up needing to put something between the two to make it work:This produces a table like this:
Adding that adds extra columns to the right and left of the headers, which isn't ideal but workable. But, being able to have spaces between the columns would be greatly appreciated. Is there a way of doing that?
The text was updated successfully, but these errors were encountered: