├── .github ├── FUNDING.yml └── workflows │ └── tests-ci.yml ├── .gitignore ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── bin └── package.sh ├── lib.typ ├── oxifmt.typ ├── tests └── strfmt-tests.typ └── typst.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # You may support oxifmt by sponsoring the account(s) below 2 | 3 | github: PgBiel 4 | -------------------------------------------------------------------------------- /.github/workflows/tests-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/.github/workflows/tests-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT OR Apache-2.0 2 | -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/README.md -------------------------------------------------------------------------------- /bin/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/bin/package.sh -------------------------------------------------------------------------------- /lib.typ: -------------------------------------------------------------------------------- 1 | #import "oxifmt.typ": strfmt 2 | -------------------------------------------------------------------------------- /oxifmt.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/oxifmt.typ -------------------------------------------------------------------------------- /tests/strfmt-tests.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/tests/strfmt-tests.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PgBiel/typst-oxifmt/HEAD/typst.toml --------------------------------------------------------------------------------