{"id":28712408,"url":"https://github.com/typst-community/rowmantic","last_synced_at":"2026-02-01T01:34:30.577Z","repository":{"id":296189540,"uuid":"992280031","full_name":"typst-community/rowmantic","owner":"typst-community","description":"A Typst package for row-wise table editing","archived":false,"fork":false,"pushed_at":"2025-09-09T08:55:58.000Z","size":1971,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-28T00:32:07.964Z","etag":null,"topics":["table","typst","typst-package"],"latest_commit_sha":null,"homepage":"https://typst.app/universe/package/rowmantic","language":"Typst","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/typst-community.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-EUPL-1.2.txt","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}},"created_at":"2025-05-28T22:48:38.000Z","updated_at":"2025-09-09T08:56:01.000Z","dependencies_parsed_at":"2025-05-29T12:33:22.298Z","dependency_job_id":"89c9e490-ad51-4842-944d-38d2994a9cbe","html_url":"https://github.com/typst-community/rowmantic","commit_stats":null,"previous_names":["typst-community/rowmantic"],"tags_count":6,"template":false,"template_full_name":"typst-community/typst-package-template","purl":"pkg:github/typst-community/rowmantic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typst-community%2Frowmantic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typst-community%2Frowmantic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typst-community%2Frowmantic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typst-community%2Frowmantic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/typst-community","download_url":"https://codeload.github.com/typst-community/rowmantic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typst-community%2Frowmantic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28963913,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T01:25:30.373Z","status":"ssl_error","status_checked_at":"2026-02-01T01:25:29.809Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["table","typst","typst-package"],"created_at":"2025-06-14T23:05:44.546Z","updated_at":"2026-02-01T01:34:30.571Z","avatar_url":"https://github.com/typst-community.png","language":"Typst","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `rowmantic`\n**A Typst package for row-wise table editing**\n\nRowmantic introduces the `rowtable` function as a row-oriented \"frontend\" to the usual `table` function in typst.\n\nThe `rowtable` function takes a markup block `[...]` per row, and the markup is split internally on a delimiter which is `\u0026` by default. In all other aspects it works like the usual `table` function, with `stroke`, `fill`, `hline` and so on.\n\nFor example, the following\n\n```typ,notest\n#rowtable(\n  [A \u0026 B],\n  [C \u0026 D \u0026 E])\n```\n\nis equivalent to this `table`:\n\n```typ,notest\n#table(columns: 3,\n  [A], [B], [],\n  [C], [D], [E])\n```\n\nFor improved table ergonomics, the longest row determines the number of columns, and all rows are effectively completed so that they are of full length. This creates a better editing experience, as rows and columns can be filled out gradually.\n\nThere is a corresponding `rowgrid` function with identical interface, but for the usual `grid`.\n\n## Getting Started\n\n\u003cp\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"docs/figures/readmepicture1.svg\"\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"docs/figures/readmepicture1-dark.svg\"\u003e\n    \u003cimg alt=\"rowtable example, basic\" src=\"docs/figures/readmepicture1.svg\"\u003e\n  \u003c/picture\u003e\n\u003c/p\u003e\n\n```typ\n#import \"@preview/rowmantic:0.5.0\": rowtable\n\n#rowtable(\n  stroke: 0.5pt,\n  [Input      \u0026 tables  \u0026 row-    \u0026 wise      ],\n  [Otherwise  \u0026 same as \u0026 regular \u0026 `#table`  ],\n)\n```\n\n---\n\n\u003cp\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"docs/figures/readmepicture2.svg\"\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"docs/figures/readmepicture2-dark.svg\"\u003e\n    \u003cimg alt=\"rowtable example, glossing table\" src=\"docs/figures/readmepicture2.svg\"\u003e\n  \u003c/picture\u003e\n\u003c/p\u003e\n\n```typ\n#import \"@preview/rowmantic:0.5.0\": rowtable, expandcell\n#{\n  show regex(\"\\d\"): super.with(size: 0.8em, typographic: false)\n  show table.cell: it =\u003e { set text(size: 0.9em) if it.y \u003e= 1; it }\n  show table.cell.where(y: 0): emph\n  rowtable(\n    separator: \",\",   // configurable separator\n    stroke: none,     // pass through table arguments, hlines, cells et.c.\n    inset: (x: 0em),\n    column-gutter: 0.9em,\n    // rows are filled to be equal length after collecting cells\n    [goá,   iáu-boē,    koat-tēng,    tang-sî,    boeh,   tńg-khì   ],\n    [goa1,  iau1-boe3,  koat2-teng3,  tang7-si5,  boeh2,  tng1-khi3 ],\n    [goa2,  iau2-boe7,  koat4-teng7,  tang1-si5,  boeh4,  tng2-khi3 ],\n    [I,     not-yet,    decide,       when,       want,   return.   ],\n    table.hline(),\n    // cell that fills remainder of row\n    expandcell[\"I have not yet decided when I shall return.\"],\n  )\n}\n```\n\nThis example [taken from Wikipedia](https://en.wikipedia.org/wiki/Interlinear_gloss)\n\n\u003c!--\n### Installation\n\nTBD\n--\u003e\n\n## Function Documentation and Manual\n\nPlease \u003ca href=\"docs/rowmantic-manual.pdf?raw=1\"\u003esee the manual\u003c/a\u003e for more explanations, examples and function documentation.\n\n## License\n\nThe package is distributed under the terms of the European Union Public License v1.2 or any later version, which is an OSI-approved weakly copyleft license. The License is distributed with the package.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftypst-community%2Frowmantic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftypst-community%2Frowmantic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftypst-community%2Frowmantic/lists"}