flip-tables
flip-tables copied to clipboard
Because pretty-printing text tables in Java should be easy.
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/JakeWharton/flip-tables). This repository currently has no open or...
Related: https://github.com/JakeWharton/flip-tables/issues/17 Supporting two-column wrapping strategies: - Fixed Width: Takes `table width` as input and shrinks the columns proportionally (to the max length of any column data). Words are not...
Adds `TableFormat` support for : https://github.com/JakeWharton/flip-tables/issues/14 * DefaultTableFormat * AsciiTableFormat
I noticed that from time to time, there are some unidentified characters, printed out as ��� in my Eclipse IDE (4.7.3a) console output which runs on my Debian. Sometimes, it's...
Thanks for a nice lib! I have an issue here: https://github.com/tomasbjerre/violations-lib/pull/30 We want a way to set a maximum width of columns. Inject newline to the content of the columns...
So right now all the `dividers` are special chars like `"╚═══╝"`. This really needs to be customizable so people can choose to use more basic ascii chars that won't break...
Is it possible to (implicitly) support variable length content? For example, ```java String[] headers = { "Test", "Header" }; String[][] data = { { "Foo", "Bar" }, { "Kit", "Kat",...