# docs **Repository Path**: mill_teacher/docs ## Basic Information - **Project Name**: docs - **Description**: kuzuๅฎ˜ๆ–นๆ–‡ๆกฃ - **Primary Language**: Unknown - **License**: CC-BY-SA-4.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-25 - **Last Updated**: 2026-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Kuzu Documentation [![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build) This documentation site is built with [Astro](https://astro.build) and [Starlight](https://starlight.astro.build). The sections below describe the site's structure and the commands for installation, local development and build instructions. ## ๐Ÿš€ Project Structure Inside of this Astro + Starlight project, there exist the following folders and files: ``` . โ”œโ”€โ”€ public/ โ”œโ”€โ”€ src/ โ”‚ โ”œโ”€โ”€ assets/ โ”‚ โ”œโ”€โ”€ content/ โ”‚ โ”‚ โ”œโ”€โ”€ docs/ โ”‚ โ”‚ โ””โ”€โ”€ config.ts โ”‚ โ””โ”€โ”€ env.d.ts โ”œโ”€โ”€ astro.config.mjs โ”œโ”€โ”€ package.json โ””โ”€โ”€ tsconfig.json ``` Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name. > [!NOTE] > MDX combines JSX and Markdown to make it easier to write component-driven content like tabbed code blocks. > Starlight requires that you work with `.mdx` files instead of `.md` when using JSX components. See the official > [documentation](https://mdxjs.com/) for more information on MDX syntax and why it exists. Images are added to `src/assets/` and embedded in Markdown with a relative link. Any additional static assets (like fonts, favicon, PDFs, etc.) that will not be processed by Astro are placed in the `public/` directory. ## Customizations ### Table Syntax Highlighting Add tag "table" after the three backticks to indicate the table custom css style to code block **Usage:** ```table โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ column1 โ”‚ column2 โ”‚ column3 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ value1 โ”‚ value2 โ”‚ value3 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ ``` ### Tab Synchronization Include "syncKey=" to Tabs tag. To have tabs synchronize, ensure are the same across different tabs. The tabitems do not need to be the same. Identical tabitems will have synchronization applied to them when clicked. **Usage:** Pressing on "Rust" will result in both tabs switching onto Rust. ## ๐Ÿงž Commands All commands are run from the root of the project, from a terminal: | Command | Action | | :------------------------ | :----------------------------------------------- | | `npm install` | Installs dependencies | | `npm run dev` | Starts local dev server at `localhost:4321` | | `npm start` | Starts local server and builds site | | `npm run build` | Build your production site to `./dist/` | | `npm run preview` | Preview your build locally, before deploying | | `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | | `npm run astro -- --help` | Get help using the Astro CLI | | `npm run check-links` | Check for broken links in the documentation | ## ๐Ÿ‘€ Learn more Check out [Starlightโ€™s docs](https://starlight.astro.build/) and read [the Astro documentation](https://docs.astro.build) for further customization of the site.