├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build.yml │ ├── coverage.yml │ └── lint.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── README.md ├── ansi ├── ansi.go ├── buffer.go ├── buffer_test.go ├── writer.go └── writer_test.go ├── dedent ├── dedent.go └── dedent_test.go ├── go.mod ├── go.sum ├── indent ├── indent.go └── indent_test.go ├── margin ├── margin.go └── margin_test.go ├── padding ├── padding.go └── padding_test.go ├── reflow.png ├── truncate ├── truncate.go └── truncate_test.go ├── wordwrap ├── wordwrap.go └── wordwrap_test.go └── wrap ├── wrap.go └── wrap_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: muesli 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/README.md -------------------------------------------------------------------------------- /ansi/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/ansi/ansi.go -------------------------------------------------------------------------------- /ansi/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/ansi/buffer.go -------------------------------------------------------------------------------- /ansi/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/ansi/buffer_test.go -------------------------------------------------------------------------------- /ansi/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/ansi/writer.go -------------------------------------------------------------------------------- /ansi/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/ansi/writer_test.go -------------------------------------------------------------------------------- /dedent/dedent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/dedent/dedent.go -------------------------------------------------------------------------------- /dedent/dedent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/dedent/dedent_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/go.sum -------------------------------------------------------------------------------- /indent/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/indent/indent.go -------------------------------------------------------------------------------- /indent/indent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/indent/indent_test.go -------------------------------------------------------------------------------- /margin/margin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/margin/margin.go -------------------------------------------------------------------------------- /margin/margin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/margin/margin_test.go -------------------------------------------------------------------------------- /padding/padding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/padding/padding.go -------------------------------------------------------------------------------- /padding/padding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/padding/padding_test.go -------------------------------------------------------------------------------- /reflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/reflow.png -------------------------------------------------------------------------------- /truncate/truncate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/truncate/truncate.go -------------------------------------------------------------------------------- /truncate/truncate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/truncate/truncate_test.go -------------------------------------------------------------------------------- /wordwrap/wordwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/wordwrap/wordwrap.go -------------------------------------------------------------------------------- /wordwrap/wordwrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/wordwrap/wordwrap_test.go -------------------------------------------------------------------------------- /wrap/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/wrap/wrap.go -------------------------------------------------------------------------------- /wrap/wrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muesli/reflow/HEAD/wrap/wrap_test.go --------------------------------------------------------------------------------