tablewriter
tablewriter copied to clipboard
ASCII table in golang
When using `SetAutoMergeCellsByColumnIndex`, there are wasted space in table. Because we print empty line in merged cells. This pr will merge lines with the same column value in `SetAutoMergeCellsByColumnIndex` to...
When using said option like this: ```go table.SetTablePadding("\t") ``` Then the columns are separated by `TAB` as whished, but the rows contain an additional `TAB` at the end. ```default #...
Slightly more complete fix than #206, not sure how you feel about detail-vs-complexity. CC @tucksaun for potential review
## Changes - Bump `actions/checkout` from `v2` (Node 12) to `v4` (Node 20). - Bump `actions/setup-go` from `v2` (Node 12) to `v5` (Node 20). [This change will also improve the...
Problem: if a row contains multiple lines of text, rich bulk will apply colors only to the first line. Fix: apply formatting to the whole dimension.
Added a check to ensure that the ANSI colour codes in the headers are skipped when the output is redirected to the files. The ANSI colour codes will only be...
https://github.com/olekukonko/tablewriter/blob/f6b4e4ae60d8d6993c8f70eb704850d16f124db8/util.go#L48C5-L48C5 Hi, Is there any reason that replace all dots don't near space or number with a blank character?
Example 2 - Without Border / Footer / Bulk Append data := [][]string{ []string{"1/1/2014", "Domain name", "2233", "$10.98"}, []string{"1/1/2014", "January Hosting", "2233", "$54.95"}, []string{"1/4/2014", "February Hosting", "2233", "$51.00"}, []string{"1/4/2014", "February...
Completing one of the todos on the readme by adding the functionality to render table from html file. This PR adds a new dependency to the package: golang.org/x/net/html to help...