{"id":23490074,"url":"https://github.com/joggrdocs/tempo","last_synced_at":"2025-04-15T04:32:15.492Z","repository":{"id":179563815,"uuid":"663690297","full_name":"joggrdocs/tempo","owner":"joggrdocs","description":"Programmatically create Markdown documents.","archived":false,"fork":false,"pushed_at":"2025-04-09T23:08:49.000Z","size":3535,"stargazers_count":11,"open_issues_count":6,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T00:21:15.952Z","etag":null,"topics":["documentation","documentation-generator","markdown","markdown-builder"],"latest_commit_sha":null,"homepage":"https://joggrdocs.github.io/tempo/","language":"TypeScript","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/joggrdocs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-07T22:11:54.000Z","updated_at":"2025-04-09T23:07:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"fb793572-ff16-4371-98ef-caf61ff3a42e","html_url":"https://github.com/joggrdocs/tempo","commit_stats":null,"previous_names":["joggrdocs/tolkien"],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joggrdocs%2Ftempo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joggrdocs%2Ftempo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joggrdocs%2Ftempo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joggrdocs%2Ftempo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joggrdocs","download_url":"https://codeload.github.com/joggrdocs/tempo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249006389,"owners_count":21197263,"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","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":["documentation","documentation-generator","markdown","markdown-builder"],"created_at":"2024-12-25T00:15:37.385Z","updated_at":"2025-04-15T04:32:15.486Z","avatar_url":"https://github.com/joggrdocs.png","language":"TypeScript","readme":"\u003cdiv\u003e\n    \u003cp align=\"center\"\u003e\n        \u003cimg src=\"https://github.com/joggrdocs/tempo/blob/main/assets/tempo-logo.png\" align=\"center\"  /\u003e\n    \u003c/p\u003e\n    \u003chr\u003e\n    \u003cblockquote align=\"center\"\u003e\n        \"Running gives freedom. When you run you can determine your own tempo. You can choose your own course and think whatever you want. Nobody tells you what to do.\" - Nina Kuscsik\n    \u003c/blockquote\u003e\n\u003c/div\u003e\n\n\u003cbr\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://badge.fury.io/js/@joggr%2Ftempo\"\u003e\n    \u003cimg src=\"https://badge.fury.io/js/@joggr%2Ftempo.svg\" alt=\"npm version\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/joggrdocs/tempo/actions/workflows/github-code-scanning/codeql\"\u003e\n    \u003cimg alt=\"CodeQL\" src=\"https://github.com/joggrdocs/tempo/actions/workflows/github-code-scanning/codeql/badge.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/joggrdocs/tempo/actions/workflows/pkg-npm-publish.yaml\"\u003e\n    \u003cimg alt=\"Publish to npm\" src=\"https://github.com/joggrdocs/tempo/actions/workflows/pkg-npm-publish.yaml/badge.svg\"\u003e\n  \u003c/a\u003e\n  \u003cbr /\u003e\n  \u003ca href=\"https://github.com/joggrdocs/tempo/actions/workflows/ci.yaml\"\u003e\n    \u003cimg alt=\"CI\" src=\"https://github.com/joggrdocs/tempo/actions/workflows/ci.yaml/badge.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://biomejs.dev\"\u003e\n    \u003cimg alt=\"Static Badge\" src=\"https://img.shields.io/badge/Formatted_with-Biome-60a5fa?style=flat\u0026logo=biome\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n## Overview\n\nA set of libraries used to programmatically build markdown documents, with a heavy tilt toward [GitHub Flavored Markdown (GFM)](https://github.github.com/gfm/).\n\n- 🦄 Programmatically generate docs for `CI` or `commit-hooks` \n- 📋 Create reusable templates for your projects\n- 🤖 Build templates for standardizing output from LLMs\n- 🐱 Use all the goodness of [GitHub Flavored Markdown (GFM)](https://github.github.com/gfm/)\n\n## Usage\n\n```typescript\nimport fs from 'node:fs/promises';\nimport tempo from '@joggr/tempo';\n\nconst doc = tempo()\n  .h1('Hello, World!')\n  .p('This is a test document.')\n  .toString();\n\nawait fs.writeFile('test.md', doc);\n```\n\n## Libraries\n\n- 🏃 [`@joggr/tempo`](/packages/tempo): A TypeScript library used to programmatically build markdown documents\n\n## License\n\nLicensed under MIT.\n\n\u003c!-- Signup footer --\u003e\n\u003cbr\u003e\n\u003chr\u003e\n\u003ch2 align=\"center\"\u003e\n   ⚡️ Want to sign up for Joggr?\n\u003c/h2\u003e\n\u003cp align=\"center\"\u003e\n    You can sign up for free at our website:  \u003ca href=\"https://www.joggr.io/signup?utm_source=github\u0026utm_medium=org-readme\u0026utm_campaign=static-docs\"\u003ehttps://joggr.io\u003c/a\u003e\u003cbr\u003e\n    (or click button below 👇)\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.joggr.io/signup?utm_source=github\u0026utm_medium=org-readme\u0026utm_campaign=static-docs\"\u003e\n    \u003cimg src=\"https://assets.joggr.io/github/badges/signup-badge.svg\" width=\"250px\" alt=\"Sign up\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003cbr\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoggrdocs%2Ftempo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoggrdocs%2Ftempo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoggrdocs%2Ftempo/lists"}