├── .github ├── FUNDING.yml └── workflows │ ├── build_documentation.yml │ └── run_tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── images │ └── sincx-docs.svg ├── migration-to-0.4.0.md ├── template.typ └── tidy-guide.typ ├── examples ├── example-demo.typ ├── funny-math │ ├── custom-style.typ │ ├── funny-math-complex.typ │ ├── funny-math-docs.typ │ ├── funny-math.typ │ ├── polar.svg │ └── template.typ ├── repeater.typ ├── sincx-doc.typ ├── sincx.typ ├── wiggly-doc.typ └── wiggly.typ ├── src ├── helping.typ ├── locales.typ ├── new-parser.typ ├── old-parser.typ ├── parse-module.typ ├── show-example.typ ├── show-module.typ ├── styles.typ ├── styles │ ├── default.typ │ ├── help.typ │ └── minimal.typ ├── testing.typ ├── tidy.typ └── utilities.typ ├── test.typ ├── tests ├── .gitignore ├── helping │ ├── ref │ │ └── 1.png │ └── test.typ ├── new-parser │ ├── argument-description.typ │ ├── argument-type.typ │ ├── arguments.typ │ ├── currying.typ │ ├── description.typ │ ├── issue_#40.typ │ ├── module-description.typ │ ├── multiple-definitions.typ │ └── test.typ ├── old-parser │ ├── currying.typ │ ├── parse-argument-list.typ │ ├── parse-module.typ │ └── test.typ ├── show-example │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ └── test.typ ├── test_parse.typ └── testing │ └── test.typ └── typst.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Mc-Zen] 2 | -------------------------------------------------------------------------------- /.github/workflows/build_documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/.github/workflows/build_documentation.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pdf 3 | 4 | /*.txt 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/sincx-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/docs/images/sincx-docs.svg -------------------------------------------------------------------------------- /docs/migration-to-0.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/docs/migration-to-0.4.0.md -------------------------------------------------------------------------------- /docs/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/docs/template.typ -------------------------------------------------------------------------------- /docs/tidy-guide.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/docs/tidy-guide.typ -------------------------------------------------------------------------------- /examples/example-demo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/example-demo.typ -------------------------------------------------------------------------------- /examples/funny-math/custom-style.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/funny-math/custom-style.typ -------------------------------------------------------------------------------- /examples/funny-math/funny-math-complex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/funny-math/funny-math-complex.typ -------------------------------------------------------------------------------- /examples/funny-math/funny-math-docs.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/funny-math/funny-math-docs.typ -------------------------------------------------------------------------------- /examples/funny-math/funny-math.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/funny-math/funny-math.typ -------------------------------------------------------------------------------- /examples/funny-math/polar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/funny-math/polar.svg -------------------------------------------------------------------------------- /examples/funny-math/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/funny-math/template.typ -------------------------------------------------------------------------------- /examples/repeater.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/repeater.typ -------------------------------------------------------------------------------- /examples/sincx-doc.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/sincx-doc.typ -------------------------------------------------------------------------------- /examples/sincx.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/sincx.typ -------------------------------------------------------------------------------- /examples/wiggly-doc.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/wiggly-doc.typ -------------------------------------------------------------------------------- /examples/wiggly.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/examples/wiggly.typ -------------------------------------------------------------------------------- /src/helping.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/helping.typ -------------------------------------------------------------------------------- /src/locales.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/locales.typ -------------------------------------------------------------------------------- /src/new-parser.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/new-parser.typ -------------------------------------------------------------------------------- /src/old-parser.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/old-parser.typ -------------------------------------------------------------------------------- /src/parse-module.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/parse-module.typ -------------------------------------------------------------------------------- /src/show-example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/show-example.typ -------------------------------------------------------------------------------- /src/show-module.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/show-module.typ -------------------------------------------------------------------------------- /src/styles.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/styles.typ -------------------------------------------------------------------------------- /src/styles/default.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/styles/default.typ -------------------------------------------------------------------------------- /src/styles/help.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/styles/help.typ -------------------------------------------------------------------------------- /src/styles/minimal.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/styles/minimal.typ -------------------------------------------------------------------------------- /src/testing.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/testing.typ -------------------------------------------------------------------------------- /src/tidy.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/tidy.typ -------------------------------------------------------------------------------- /src/utilities.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/src/utilities.typ -------------------------------------------------------------------------------- /test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/test.typ -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/helping/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/helping/ref/1.png -------------------------------------------------------------------------------- /tests/helping/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/helping/test.typ -------------------------------------------------------------------------------- /tests/new-parser/argument-description.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/argument-description.typ -------------------------------------------------------------------------------- /tests/new-parser/argument-type.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/argument-type.typ -------------------------------------------------------------------------------- /tests/new-parser/arguments.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/arguments.typ -------------------------------------------------------------------------------- /tests/new-parser/currying.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/currying.typ -------------------------------------------------------------------------------- /tests/new-parser/description.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/description.typ -------------------------------------------------------------------------------- /tests/new-parser/issue_#40.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/issue_#40.typ -------------------------------------------------------------------------------- /tests/new-parser/module-description.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/module-description.typ -------------------------------------------------------------------------------- /tests/new-parser/multiple-definitions.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/multiple-definitions.typ -------------------------------------------------------------------------------- /tests/new-parser/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/new-parser/test.typ -------------------------------------------------------------------------------- /tests/old-parser/currying.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/old-parser/currying.typ -------------------------------------------------------------------------------- /tests/old-parser/parse-argument-list.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/old-parser/parse-argument-list.typ -------------------------------------------------------------------------------- /tests/old-parser/parse-module.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/old-parser/parse-module.typ -------------------------------------------------------------------------------- /tests/old-parser/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/old-parser/test.typ -------------------------------------------------------------------------------- /tests/show-example/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/1.png -------------------------------------------------------------------------------- /tests/show-example/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/2.png -------------------------------------------------------------------------------- /tests/show-example/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/3.png -------------------------------------------------------------------------------- /tests/show-example/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/4.png -------------------------------------------------------------------------------- /tests/show-example/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/5.png -------------------------------------------------------------------------------- /tests/show-example/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/6.png -------------------------------------------------------------------------------- /tests/show-example/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/7.png -------------------------------------------------------------------------------- /tests/show-example/ref/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/8.png -------------------------------------------------------------------------------- /tests/show-example/ref/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/ref/9.png -------------------------------------------------------------------------------- /tests/show-example/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/show-example/test.typ -------------------------------------------------------------------------------- /tests/test_parse.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/test_parse.typ -------------------------------------------------------------------------------- /tests/testing/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/tests/testing/test.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/tidy/HEAD/typst.toml --------------------------------------------------------------------------------