{"id":16334596,"url":"https://github.com/pta2002/typst-timeliney","last_synced_at":"2026-01-24T10:33:19.491Z","repository":{"id":199366885,"uuid":"702720532","full_name":"pta2002/typst-timeliney","owner":"pta2002","description":"Create Gantt charts in Typst","archived":false,"fork":false,"pushed_at":"2025-09-03T08:19:32.000Z","size":885,"stargazers_count":56,"open_issues_count":7,"forks_count":9,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-09-03T10:19:35.214Z","etag":null,"topics":["typst"],"latest_commit_sha":null,"homepage":"","language":"Typst","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pta2002.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-09T21:52:57.000Z","updated_at":"2025-09-03T08:19:35.000Z","dependencies_parsed_at":"2024-11-07T00:43:46.060Z","dependency_job_id":"b081dd8b-cca0-4850-903a-2aed995601d5","html_url":"https://github.com/pta2002/typst-timeliney","commit_stats":null,"previous_names":["pta2002/typst-timeliney"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/pta2002/typst-timeliney","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pta2002%2Ftypst-timeliney","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pta2002%2Ftypst-timeliney/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pta2002%2Ftypst-timeliney/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pta2002%2Ftypst-timeliney/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pta2002","download_url":"https://codeload.github.com/pta2002/typst-timeliney/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pta2002%2Ftypst-timeliney/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28725351,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["typst"],"created_at":"2024-10-10T23:38:50.621Z","updated_at":"2026-01-24T10:33:19.486Z","avatar_url":"https://github.com/pta2002.png","language":"Typst","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Timeliney\n\nCreate Gantt charts automatically with Typst!\n\nHere's a fully-featured example:\n\n```typst\n#import \"@preview/timeliney:0.4.0\"\n\n#timeliney.timeline(\n  show-grid: true,\n  {\n    import timeliney: *\n      \n    headerline(group(([*2023*], 4)), group(([*2024*], 4)))\n    headerline(\n      group(..range(4).map(n =\u003e strong(\"Q\" + str(n + 1)))),\n      group(..range(4).map(n =\u003e strong(\"Q\" + str(n + 1)))),\n    )\n  \n    taskgroup(\n      title: [*Research*],\n      content: text(10pt, white)[*John + Julia*],\n      style: (stroke: 14pt + black),\n      {\n        task(\n          \"Research the market\",\n          (from: 0, to: 2, content: text(9pt)[John (70% done)]),\n          style: (stroke: 13pt + gray),\n        )\n        task(\n          \"Conduct user surveys\",\n          (from: 1, to: 3, content: text(9pt)[Julia (50% done)]),\n          style: (stroke: 13pt + gray),\n        )\n      },\n    )\n\n    taskgroup(title: [*Development*], {\n      task(\"Create mock-ups\", (2, 3), style: (stroke: 2pt + gray))\n      task(\"Develop application\", (3, 5), style: (stroke: 2pt + gray))\n      task(\"QA\", (3.5, 6), style: (stroke: 2pt + gray))\n    })\n\n    taskgroup(title: [*Marketing*], {\n      task(\"Press demos\", (3.5, 7), style: (stroke: 2pt + gray))\n      task(\"Social media advertising\", (6, 7.5), style: (stroke: 2pt + gray))\n    })\n\n    milestone(\n      at: 3.75,\n      style: (stroke: (dash: \"dashed\")),\n      align(center, [\n        *Conference demo*\\\n        Dec 2023\n      ])\n    )\n\n    milestone(\n      at: 6.5,\n      style: (stroke: (dash: \"dashed\")),\n      align(center, [\n        *App store launch*\\\n        Aug 2024\n      ])\n    )\n  }\n)\n```\n\n![Example Gantt chart](sample.png)\n\n## Installation\nImport with `#import \"@preview/timeliney:0.4.0\"`. Then, call the `timeliney.timeline` function.\n\n## Documentation\nSee [the manual](manual.pdf)!\n\n## Changelog\n\nSee [CHANGELOG.md](changelog.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpta2002%2Ftypst-timeliney","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpta2002%2Ftypst-timeliney","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpta2002%2Ftypst-timeliney/lists"}