├── .github └── workflows │ └── go.yml ├── .gitignore ├── .golangci.yml ├── LICENSE.md ├── MIGRATION.md ├── README.md ├── README_LEGACY.md ├── _example ├── filetable │ ├── main.go │ └── out.txt └── symbols │ ├── main.go │ └── out.txt ├── _readme └── color_1.png ├── benchstat.txt ├── cmd └── csv2table │ ├── README.md │ ├── _data │ ├── test.csv │ └── test_info.csv │ └── csv2table.go ├── config.go ├── csv.go ├── deprecated.go ├── go.mod ├── go.sum ├── new.txt ├── old.txt ├── option.go ├── pkg ├── twcache │ ├── cache.go │ ├── lru.go │ ├── lru_bench_test.go │ └── lru_test.go ├── twwarp │ ├── _data │ │ ├── long-text-wrapped.txt │ │ └── long-text.txt │ ├── wrap.go │ └── wrap_test.go └── twwidth │ ├── width.go │ ├── width_bench_test.go │ └── width_test.go ├── renderer ├── blueprint.go ├── colorized.go ├── fn.go ├── html.go ├── junction.go ├── markdown.go ├── ocean.go └── svg.go ├── stream.go ├── tablewriter.go ├── tablewriter_test.go ├── tests ├── basic_test.go ├── blueprint_test.go ├── bug_test.go ├── caption_test.go ├── colorized_test.go ├── csv_test.go ├── extra_test.go ├── feature_test.go ├── fn.go ├── html_test.go ├── markdown_test.go ├── merge_test.go ├── ocean_test.go ├── streamer_test.go ├── struct_test.go ├── svg_test.go └── table_bench_test.go ├── tw ├── cell.go ├── deprecated.go ├── fn.go ├── fn_test.go ├── mapper.go ├── preset.go ├── renderer.go ├── slicer.go ├── state.go ├── symbols.go ├── tw.go └── types.go └── zoo.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/README.md -------------------------------------------------------------------------------- /README_LEGACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/README_LEGACY.md -------------------------------------------------------------------------------- /_example/filetable/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/_example/filetable/main.go -------------------------------------------------------------------------------- /_example/filetable/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/_example/filetable/out.txt -------------------------------------------------------------------------------- /_example/symbols/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/_example/symbols/main.go -------------------------------------------------------------------------------- /_example/symbols/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/_example/symbols/out.txt -------------------------------------------------------------------------------- /_readme/color_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/_readme/color_1.png -------------------------------------------------------------------------------- /benchstat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/benchstat.txt -------------------------------------------------------------------------------- /cmd/csv2table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/cmd/csv2table/README.md -------------------------------------------------------------------------------- /cmd/csv2table/_data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/cmd/csv2table/_data/test.csv -------------------------------------------------------------------------------- /cmd/csv2table/_data/test_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/cmd/csv2table/_data/test_info.csv -------------------------------------------------------------------------------- /cmd/csv2table/csv2table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/cmd/csv2table/csv2table.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/config.go -------------------------------------------------------------------------------- /csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/csv.go -------------------------------------------------------------------------------- /deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/deprecated.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/go.sum -------------------------------------------------------------------------------- /new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/new.txt -------------------------------------------------------------------------------- /old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/old.txt -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/option.go -------------------------------------------------------------------------------- /pkg/twcache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twcache/cache.go -------------------------------------------------------------------------------- /pkg/twcache/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twcache/lru.go -------------------------------------------------------------------------------- /pkg/twcache/lru_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twcache/lru_bench_test.go -------------------------------------------------------------------------------- /pkg/twcache/lru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twcache/lru_test.go -------------------------------------------------------------------------------- /pkg/twwarp/_data/long-text-wrapped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twwarp/_data/long-text-wrapped.txt -------------------------------------------------------------------------------- /pkg/twwarp/_data/long-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twwarp/_data/long-text.txt -------------------------------------------------------------------------------- /pkg/twwarp/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twwarp/wrap.go -------------------------------------------------------------------------------- /pkg/twwarp/wrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twwarp/wrap_test.go -------------------------------------------------------------------------------- /pkg/twwidth/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twwidth/width.go -------------------------------------------------------------------------------- /pkg/twwidth/width_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twwidth/width_bench_test.go -------------------------------------------------------------------------------- /pkg/twwidth/width_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/pkg/twwidth/width_test.go -------------------------------------------------------------------------------- /renderer/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/renderer/blueprint.go -------------------------------------------------------------------------------- /renderer/colorized.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/renderer/colorized.go -------------------------------------------------------------------------------- /renderer/fn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/renderer/fn.go -------------------------------------------------------------------------------- /renderer/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/renderer/html.go -------------------------------------------------------------------------------- /renderer/junction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/renderer/junction.go -------------------------------------------------------------------------------- /renderer/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/renderer/markdown.go -------------------------------------------------------------------------------- /renderer/ocean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/renderer/ocean.go -------------------------------------------------------------------------------- /renderer/svg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/renderer/svg.go -------------------------------------------------------------------------------- /stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/stream.go -------------------------------------------------------------------------------- /tablewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tablewriter.go -------------------------------------------------------------------------------- /tablewriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tablewriter_test.go -------------------------------------------------------------------------------- /tests/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/basic_test.go -------------------------------------------------------------------------------- /tests/blueprint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/blueprint_test.go -------------------------------------------------------------------------------- /tests/bug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/bug_test.go -------------------------------------------------------------------------------- /tests/caption_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/caption_test.go -------------------------------------------------------------------------------- /tests/colorized_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/colorized_test.go -------------------------------------------------------------------------------- /tests/csv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/csv_test.go -------------------------------------------------------------------------------- /tests/extra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/extra_test.go -------------------------------------------------------------------------------- /tests/feature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/feature_test.go -------------------------------------------------------------------------------- /tests/fn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/fn.go -------------------------------------------------------------------------------- /tests/html_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/html_test.go -------------------------------------------------------------------------------- /tests/markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/markdown_test.go -------------------------------------------------------------------------------- /tests/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/merge_test.go -------------------------------------------------------------------------------- /tests/ocean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/ocean_test.go -------------------------------------------------------------------------------- /tests/streamer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/streamer_test.go -------------------------------------------------------------------------------- /tests/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/struct_test.go -------------------------------------------------------------------------------- /tests/svg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/svg_test.go -------------------------------------------------------------------------------- /tests/table_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tests/table_bench_test.go -------------------------------------------------------------------------------- /tw/cell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/cell.go -------------------------------------------------------------------------------- /tw/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/deprecated.go -------------------------------------------------------------------------------- /tw/fn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/fn.go -------------------------------------------------------------------------------- /tw/fn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/fn_test.go -------------------------------------------------------------------------------- /tw/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/mapper.go -------------------------------------------------------------------------------- /tw/preset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/preset.go -------------------------------------------------------------------------------- /tw/renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/renderer.go -------------------------------------------------------------------------------- /tw/slicer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/slicer.go -------------------------------------------------------------------------------- /tw/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/state.go -------------------------------------------------------------------------------- /tw/symbols.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/symbols.go -------------------------------------------------------------------------------- /tw/tw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/tw.go -------------------------------------------------------------------------------- /tw/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/tw/types.go -------------------------------------------------------------------------------- /zoo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olekukonko/tablewriter/HEAD/zoo.go --------------------------------------------------------------------------------