├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 01_suggest-project.yml │ ├── 02_update-project.md │ ├── 03_update-category.md │ ├── 04_change-configuration.md │ └── 05_anything-else.md ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md ├── dependabot.yaml ├── labels.yml └── workflows │ ├── add-project.yml │ ├── check.yml │ ├── deploy.yml │ └── update-best-of-list.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config ├── footer.md └── header.md ├── history ├── 2025-08-21_changes.md ├── 2025-08-21_projects.csv ├── 2025-08-22_changes.md ├── 2025-08-22_projects.csv ├── 2025-08-23_changes.md ├── 2025-08-23_projects.csv ├── 2025-08-30_changes.md ├── 2025-08-30_projects.csv ├── 2025-09-12_changes.md ├── 2025-09-12_projects.csv ├── 2025-09-21_changes.md ├── 2025-09-21_projects.csv ├── 2025-10-21_changes.md ├── 2025-10-21_projects.csv ├── 2025-11-12_changes.md ├── 2025-11-12_projects.csv ├── 2025-11-21_changes.md └── 2025-11-21_projects.csv ├── justfile ├── latest-changes.md ├── projects.yaml ├── scripts ├── add_project.py ├── check_uniq.py ├── history_to_json.py ├── projects.schema.json └── sync_issue_form.py └── typ ├── default-config.typ ├── generator.typ ├── integrations.typ ├── license.typ ├── main.typ ├── markdown.typ ├── projects-collection.typ ├── style.css ├── tooltip.js └── utils.typ /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_suggest-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/ISSUE_TEMPLATE/01_suggest-project.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_update-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/ISSUE_TEMPLATE/02_update-project.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_update-category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/ISSUE_TEMPLATE/03_update-category.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_change-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/ISSUE_TEMPLATE/04_change-configuration.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_anything-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/ISSUE_TEMPLATE/05_anything-else.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/add-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/workflows/add-project.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/update-best-of-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.github/workflows/update-best-of-list.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/README.md -------------------------------------------------------------------------------- /config/footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/config/footer.md -------------------------------------------------------------------------------- /config/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/config/header.md -------------------------------------------------------------------------------- /history/2025-08-21_changes.md: -------------------------------------------------------------------------------- 1 | Nothing changed from last update. -------------------------------------------------------------------------------- /history/2025-08-21_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-08-21_projects.csv -------------------------------------------------------------------------------- /history/2025-08-22_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-08-22_changes.md -------------------------------------------------------------------------------- /history/2025-08-22_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-08-22_projects.csv -------------------------------------------------------------------------------- /history/2025-08-23_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-08-23_changes.md -------------------------------------------------------------------------------- /history/2025-08-23_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-08-23_projects.csv -------------------------------------------------------------------------------- /history/2025-08-30_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-08-30_changes.md -------------------------------------------------------------------------------- /history/2025-08-30_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-08-30_projects.csv -------------------------------------------------------------------------------- /history/2025-09-12_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-09-12_changes.md -------------------------------------------------------------------------------- /history/2025-09-12_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-09-12_projects.csv -------------------------------------------------------------------------------- /history/2025-09-21_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-09-21_changes.md -------------------------------------------------------------------------------- /history/2025-09-21_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-09-21_projects.csv -------------------------------------------------------------------------------- /history/2025-10-21_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-10-21_changes.md -------------------------------------------------------------------------------- /history/2025-10-21_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-10-21_projects.csv -------------------------------------------------------------------------------- /history/2025-11-12_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-11-12_changes.md -------------------------------------------------------------------------------- /history/2025-11-12_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-11-12_projects.csv -------------------------------------------------------------------------------- /history/2025-11-21_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-11-21_changes.md -------------------------------------------------------------------------------- /history/2025-11-21_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/history/2025-11-21_projects.csv -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/justfile -------------------------------------------------------------------------------- /latest-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/latest-changes.md -------------------------------------------------------------------------------- /projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/projects.yaml -------------------------------------------------------------------------------- /scripts/add_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/scripts/add_project.py -------------------------------------------------------------------------------- /scripts/check_uniq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/scripts/check_uniq.py -------------------------------------------------------------------------------- /scripts/history_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/scripts/history_to_json.py -------------------------------------------------------------------------------- /scripts/projects.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/scripts/projects.schema.json -------------------------------------------------------------------------------- /scripts/sync_issue_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/scripts/sync_issue_form.py -------------------------------------------------------------------------------- /typ/default-config.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/default-config.typ -------------------------------------------------------------------------------- /typ/generator.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/generator.typ -------------------------------------------------------------------------------- /typ/integrations.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/integrations.typ -------------------------------------------------------------------------------- /typ/license.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/license.typ -------------------------------------------------------------------------------- /typ/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/main.typ -------------------------------------------------------------------------------- /typ/markdown.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/markdown.typ -------------------------------------------------------------------------------- /typ/projects-collection.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/projects-collection.typ -------------------------------------------------------------------------------- /typ/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/style.css -------------------------------------------------------------------------------- /typ/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/tooltip.js -------------------------------------------------------------------------------- /typ/utils.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDX-2147483647/best-of-typst/HEAD/typ/utils.typ --------------------------------------------------------------------------------