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
Example:
const p = new Table(); p.addRows([{ col1: 'col1', col2: `col\n2`, col3: 'col3' }]); p.printTable();
produce:
┌──────┬──────┬──────┐ │ col1 │ col2 │ col3 │ ├──────┼──────┼──────┤ │ col1 │ col 2 │ col3 │ └──────┴──────┴──────┘
expect:
┌──────┬──────┬──────┐ │ col1 │ col2 │ col3 │ ├──────┼──────┼──────┤ │ col1 │ col2 │ col3 │ │ │ 2 │ │ └──────┴──────┴──────┘
The text was updated successfully, but these errors were encountered:
Considering this an edge case the solution might take some time to implement. But Prs are welcome
Sorry, something went wrong.
fix: new lines in cells broke table format (#466)
6b28738
Fixes #438
chore(release): 2.12.1 [skip ci]
fd21eeb
## [2.12.1](v2.12.0...v2.12.1) (2024-06-20) ### Bug Fixes * new lines in cells broke table format ([#466](#466)) ([6b28738](6b28738)), closes [#438](#438)
🎉 This issue has been resolved in version 2.12.1 🎉
The release is available on:
Your semantic-release bot 📦🚀
Successfully merging a pull request may close this issue.
Example:
produce:
expect:
The text was updated successfully, but these errors were encountered: