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
All the values are left aligned. Does it support right alignment?
Thanks!
The text was updated successfully, but these errors were encountered:
I have not tested this, but you could try changing TextTable.swift This would change everything to right alignment.
TextTable.swift
func withPadding(count: Int) -> String { let length = self.strippedLength() if length < count { - return self + - repeatElement(" ", count: count - length).joined() + return repeatElement(" ", count: count - length).joined() + self } return self }
Sorry, something went wrong.
I submitted a pull request. No test, just code but I tested it locally.
No branches or pull requests
All the values are left aligned. Does it support right alignment?
Thanks!
The text was updated successfully, but these errors were encountered: