-
Notifications
You must be signed in to change notification settings - Fork 173
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
left, right, and center-aligned Markdown tables #53
Comments
I just had a look at implementing this and realised that this is exactly what the 'pipe' format does. The README even points out that the 'github' format is the 'pipe' format without alignment markers, although I missed that the first time I read through the patterns. |
Had the same issue trying to produce a GitHub table with alignment directives. I ended up with a workaround to emulate that behavior. For reference, my hackish code is available at: https://github.com/kdeldycke/meta-package-manager/blob/af261b7194c592bbd45a6910bed8063fa6c59fbe/meta_package_manager/inventory.py#L56-L87 |
Closes astanin#53, superseds astanin#260.
Closes astanin#53, superseds astanin#260.
For reference, I proposed a PR to address this issue at: #261 |
Closes astanin#53, superseds astanin#260.
Closes astanin#53, superseds astanin#260.
I suppose this feature is now covered by |
I realize that Markdown is a mess, but for
tablefmt="github"
withstralign
argument, the header line (which goes as-----------
) can be modified as the following:stralign="left"
: header lines will have:---------
.stralign="right"
: header lines will have---------:
.stralign="center"
: header lines have:--------:
.The text was updated successfully, but these errors were encountered: