├── .github ├── FUNDING.yml └── workflows │ ├── CI.yml │ └── pages.yml ├── .gitignore ├── .ocamlformat ├── CHANGES.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── ansifmt.opam ├── docs └── index.md ├── dune-project ├── lib ├── Ansi │ ├── Ansi.ml │ ├── Ansi.mli │ ├── Attributes.ml │ ├── Attributes.mli │ ├── Color.ml │ └── Color.mli ├── Fmt.ml ├── Fmt.mli └── dune └── test ├── Test_ansi ├── Test_ansi.ml ├── Test_attributes.ml ├── Test_color.ml └── dune └── Test_fmt ├── Test_fmt.ml └── dune /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/.ocamlformat -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/README.md -------------------------------------------------------------------------------- /ansifmt.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/ansifmt.opam -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/docs/index.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/dune-project -------------------------------------------------------------------------------- /lib/Ansi/Ansi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/Ansi/Ansi.ml -------------------------------------------------------------------------------- /lib/Ansi/Ansi.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/Ansi/Ansi.mli -------------------------------------------------------------------------------- /lib/Ansi/Attributes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/Ansi/Attributes.ml -------------------------------------------------------------------------------- /lib/Ansi/Attributes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/Ansi/Attributes.mli -------------------------------------------------------------------------------- /lib/Ansi/Color.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/Ansi/Color.ml -------------------------------------------------------------------------------- /lib/Ansi/Color.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/Ansi/Color.mli -------------------------------------------------------------------------------- /lib/Fmt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/Fmt.ml -------------------------------------------------------------------------------- /lib/Fmt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/Fmt.mli -------------------------------------------------------------------------------- /lib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/lib/dune -------------------------------------------------------------------------------- /test/Test_ansi/Test_ansi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/test/Test_ansi/Test_ansi.ml -------------------------------------------------------------------------------- /test/Test_ansi/Test_attributes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/test/Test_ansi/Test_attributes.ml -------------------------------------------------------------------------------- /test/Test_ansi/Test_color.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/test/Test_ansi/Test_color.ml -------------------------------------------------------------------------------- /test/Test_ansi/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/test/Test_ansi/dune -------------------------------------------------------------------------------- /test/Test_fmt/Test_fmt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/test/Test_fmt/Test_fmt.ml -------------------------------------------------------------------------------- /test/Test_fmt/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qexat/ansifmt/HEAD/test/Test_fmt/dune --------------------------------------------------------------------------------