{"id":17214339,"url":"https://github.com/metaxal/text-table","last_synced_at":"2026-02-09T10:03:10.603Z","repository":{"id":53813883,"uuid":"104588583","full_name":"Metaxal/text-table","owner":"Metaxal","description":"A simple Racket package to display text tables with utf-8 boxes","archived":false,"fork":false,"pushed_at":"2023-06-28T09:32:08.000Z","size":90,"stargazers_count":12,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-26T14:41:55.841Z","etag":null,"topics":["racket"],"latest_commit_sha":null,"homepage":null,"language":"Racket","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Metaxal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2017-09-23T18:08:38.000Z","updated_at":"2025-03-18T15:28:56.000Z","dependencies_parsed_at":"2025-06-04T03:37:08.445Z","dependency_job_id":"5565c9a2-794b-4b20-9fd0-1f64dab03cca","html_url":"https://github.com/Metaxal/text-table","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Metaxal/text-table","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Ftext-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Ftext-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Ftext-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Ftext-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Metaxal","download_url":"https://codeload.github.com/Metaxal/text-table/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Ftext-table/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267672223,"owners_count":24125524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["racket"],"created_at":"2024-10-15T03:02:40.045Z","updated_at":"2026-02-09T10:03:10.419Z","avatar_url":"https://github.com/Metaxal.png","language":"Racket","funding_links":[],"categories":[],"sub_categories":[],"readme":"text-table\n==========\nA simple package to display utf-8 textual tables.\nCheck out the [docs](https://docs.racket-lang.org/text-table/index.html).\n\nTo install:\n```\nraco pkg install text-table\n```\n\nSee the example in the main submodule of the `main.rkt` file.\nYou can observe the results by running:\n```\nracket -l text-table\n```\n\nA minimalistic example:\n```scheme\n#lang racket\n(require text-table)\n\n(print-simple-table\n '((a b c d e f gggg h)\n   (12  \"a\\nbcde\" 77 54 1  5646547987 41 1)\n   (111 222 3333 44 5 6 7 8888)))\n```\nOutput:\n```\na   b    c    d  e f          gggg h   \n12  a    77   54 1 5646547987 41   1   \n    bcde                               \n111 222  3333 44 5 6          7    8888\n```\nA less minimalistic example:\n```scheme\n(print-table\n '((a b c d e f gggg h)\n   (12  \"a\\nbcde\" 77 54 1  5646547987 41 1)\n   (111 222 3333 44 5 6 7 8888)))\n```\n```\n┌───┬────┬────┬──┬─┬──────────┬────┬────┐\n│a  │b   │c   │d │e│f         │gggg│h   │\n├───┼────┼────┼──┼─┼──────────┼────┼────┤\n│12 │a   │77  │54│1│5646547987│41  │1   │\n│   │bcde│    │  │ │          │    │    │\n├───┼────┼────┼──┼─┼──────────┼────┼────┤\n│111│222 │3333│44│5│6         │7   │8888│\n└───┴────┴────┴──┴─┴──────────┴────┴────┘\n```\nAn example with some more bells and whistles:\n```scheme\n(print-table\n '((a b c d e f gggg h)\n   (12  \"a\\nbcde\" 77 54 1  5646547987 41 1)\n   (111 222 3333 44 5 6 7 8888))\n #:border-style 'double\n #:framed? #f\n #:row-sep? #t\n #:align '(left center center center center center center right))\n```\n```\na  ║ b  ║ c  ║d ║e║    f     ║gggg║   h\n═══╬════╬════╬══╬═╬══════════╬════╬════\n12 ║ a  ║ 77 ║54║1║5646547987║ 41 ║   1\n   ║bcde║    ║  ║ ║          ║    ║    \n═══╬════╬════╬══╬═╬══════════╬════╬════\n111║222 ║3333║44║5║    6     ║ 7  ║8888\n```\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetaxal%2Ftext-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetaxal%2Ftext-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetaxal%2Ftext-table/lists"}