├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── go.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── README.md ├── box.go ├── box_test.go ├── detect_unix.go ├── detect_windows.go ├── doc.go ├── examples ├── ansi_art.go ├── bold.go ├── content_wrap.go ├── contentalign_box.go ├── custom_box.go ├── lolcat.go ├── multiline_content.go ├── simple_box.go ├── tab_lines.go ├── title_color_content_color.go └── unicode.go ├── go.mod ├── go.sum ├── img ├── bold.svg ├── bottom.svg ├── classic.svg ├── custom.svg ├── double.svg ├── double_single.svg ├── hidden.svg ├── k8s_logo.png ├── lib_logo.png ├── round.svg ├── single.svg ├── single_double.svg └── top.svg ├── types.go ├── util.go └── util_test.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Delta456 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/README.md -------------------------------------------------------------------------------- /box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/box.go -------------------------------------------------------------------------------- /box_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/box_test.go -------------------------------------------------------------------------------- /detect_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/detect_unix.go -------------------------------------------------------------------------------- /detect_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/detect_windows.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/doc.go -------------------------------------------------------------------------------- /examples/ansi_art.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/ansi_art.go -------------------------------------------------------------------------------- /examples/bold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/bold.go -------------------------------------------------------------------------------- /examples/content_wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/content_wrap.go -------------------------------------------------------------------------------- /examples/contentalign_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/contentalign_box.go -------------------------------------------------------------------------------- /examples/custom_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/custom_box.go -------------------------------------------------------------------------------- /examples/lolcat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/lolcat.go -------------------------------------------------------------------------------- /examples/multiline_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/multiline_content.go -------------------------------------------------------------------------------- /examples/simple_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/simple_box.go -------------------------------------------------------------------------------- /examples/tab_lines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/tab_lines.go -------------------------------------------------------------------------------- /examples/title_color_content_color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/title_color_content_color.go -------------------------------------------------------------------------------- /examples/unicode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/examples/unicode.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/go.sum -------------------------------------------------------------------------------- /img/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/bold.svg -------------------------------------------------------------------------------- /img/bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/bottom.svg -------------------------------------------------------------------------------- /img/classic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/classic.svg -------------------------------------------------------------------------------- /img/custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/custom.svg -------------------------------------------------------------------------------- /img/double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/double.svg -------------------------------------------------------------------------------- /img/double_single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/double_single.svg -------------------------------------------------------------------------------- /img/hidden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/hidden.svg -------------------------------------------------------------------------------- /img/k8s_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/k8s_logo.png -------------------------------------------------------------------------------- /img/lib_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/lib_logo.png -------------------------------------------------------------------------------- /img/round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/round.svg -------------------------------------------------------------------------------- /img/single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/single.svg -------------------------------------------------------------------------------- /img/single_double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/single_double.svg -------------------------------------------------------------------------------- /img/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/img/top.svg -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/types.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/util.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta456/box-cli-maker/HEAD/util_test.go --------------------------------------------------------------------------------