{"id":46367778,"url":"https://github.com/parkerziegler/cartokit-docs","last_synced_at":"2026-03-05T02:34:41.333Z","repository":{"id":248602647,"uuid":"829135161","full_name":"parkerziegler/cartokit-docs","owner":"parkerziegler","description":"The documentation site for cartokit, a direct manipulation programming environment for interactive cartography.","archived":false,"fork":false,"pushed_at":"2025-11-14T04:43:49.000Z","size":65107,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-14T06:18:08.857Z","etag":null,"topics":["astro","cartography","compilers","direct-man","documentation","mapbox-gl-js"],"latest_commit_sha":null,"homepage":"https://docs.cartokit.dev","language":"Astro","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/parkerziegler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-07-15T20:42:24.000Z","updated_at":"2025-10-27T20:50:19.000Z","dependencies_parsed_at":"2024-11-04T19:23:26.739Z","dependency_job_id":"26350d2b-7012-4c4b-a3da-81c08160fdd7","html_url":"https://github.com/parkerziegler/cartokit-docs","commit_stats":null,"previous_names":["parkerziegler/cartokit-docs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/parkerziegler/cartokit-docs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parkerziegler%2Fcartokit-docs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parkerziegler%2Fcartokit-docs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parkerziegler%2Fcartokit-docs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parkerziegler%2Fcartokit-docs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/parkerziegler","download_url":"https://codeload.github.com/parkerziegler/cartokit-docs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parkerziegler%2Fcartokit-docs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30107266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T01:39:18.192Z","status":"online","status_checked_at":"2026-03-05T02:00:06.710Z","response_time":93,"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":["astro","cartography","compilers","direct-man","documentation","mapbox-gl-js"],"created_at":"2026-03-05T02:34:40.423Z","updated_at":"2026-03-05T02:34:41.315Z","avatar_url":"https://github.com/parkerziegler.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cartokit Docs\n\n[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build)\n\nThis repository contains the source code for the [`cartokit` documentation site](https://alpha.cartokit.dev/docs).\n\n## Project Structure\n\nThe `cartokit` docs follow Starlight's conventions on structure.\n\n### Content\n\nAll pages live inside as `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name.\n\n### Images and Videos\n\nImages live in `src/assets/`. You can bring images directly into `.md` or `.mdx` files using relative links.\n\nVideos live in `public` and can be embedded by either using the HTML `\u003cvideo\u003e` and `\u003csource\u003e` elements or, preferably, using our [custom `\u003cVideo\u003e` component](/docs/src/components/Video.astro) in a `.mdx` file. All values passed for the `src` prop should be string paths relative to `public`.\n\n### Styles\n\nWe use [Tailwind](https://tailwindcss.com/) to manage our CSS, powered by [Astro's Tailwind integration](https://starlight.astro.build/guides/css-and-tailwind/#tailwind-css).\n\n### Custom Components\n\nWe have a handful of custom components that we use to enhance the `cartokit` docs beyond Starlight's defaults.\n\n| Component Name              | Component Description                                                                                                                                                                                                                                                                                   |\n| --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `Card.astro`                | A variant of Starlight's [`Card.astro`](https://github.com/withastro/starlight/blob/main/packages/starlight/user-components/Card.astro) implementation, supporting arbitrary colors and icons from Vercel's [Geist Design System](https://vercel.com/geist/icons).                                      |\n| `DarkLogo.astro`            | `cartokit`'s dark mode logo variant, separated into an Astro component to avoid polluting the markup.                                                                                                                                                                                                   |\n| `Hero.astro`                | A variant of Starlight's [`Hero.astro`](https://github.com/withastro/starlight/blob/main/packages/starlight/components/Hero.astro) implementation, supporting a `\u003cvideo\u003e` in the hero and some custom CSS. We override the default `Hero` implementation in [astro.config.mjs](/docs/astro.config.mjs). |\n| `Icon.astro` and `Icons.ts` | A variant of Starlight's [`Icon.astro`](https://github.com/withastro/starlight/blob/main/packages/starlight/components/Icon.astro) implementation, supporting icons from Vercel's [Geist Design System](https://vercel.com/geist/icons).                                                                |\n| `Logo.astro`                | `cartokit`'s dark mode logo variant, separated into an Astro component to avoid polluting the markup.                                                                                                                                                                                                   |\n| `Pagination.astro`          | A variant of Starlight's [`Pagination.astro`](https://github.com/withastro/starlight/blob/main/packages/starlight/components/Pagination.astro) implementation, with some custom styling. We override the default `Pagination` implementation in [astro.config.mjs](/docs/astro.config.mjs).             |\n| `Video.astro`               | A simple abstraction over the browser's `\u003cvideo\u003e` element, with styles pre-applied.                                                                                                                                                                                                                     |\n\n## Commands\n\nAll commands are run from the root of the `docs` folder. We use [`pnpm`](https://pnpm.io/) as our package manager.\n\n| Command                | Action                                           |\n| :--------------------- | :----------------------------------------------- |\n| `pnpm install`         | Installs dependencies                            |\n| `pnpm dev`             | Starts local dev server at `localhost:4321`      |\n| `pnpm build`           | Build your production site to `./dist/`          |\n| `pnpm preview`         | Preview your build locally, before deploying     |\n| `pnpm astro ...`       | Run CLI commands like `astro add`, `astro check` |\n| `pnpm astro -- --help` | Get help using the Astro CLI                     |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparkerziegler%2Fcartokit-docs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparkerziegler%2Fcartokit-docs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparkerziegler%2Fcartokit-docs/lists"}