Thank you for your interest in contributing to the Tailor Platform documentation!
- Fork and clone the repository
- Install dependencies:
pnpm install
- Start the development server:
pnpm dev
- Place markdown files in the appropriate folder under
docs/ - Use
overview.mdfor section overviews (automatically ranked first in navigation) - Follow the existing structure and conventions
- Use frontmatter for metadata
- Internal links should be extensionless (resolved at build time)
- External links are restricted to approved domains listed in
schema.yml
- Do not skip heading levels (e.g., h1 directly to h3 is invalid)
- Maximum heading depth is h4
<Card>for clickable cards with icons and descriptions- Grid classes
.cards,.cards-2,.cards-3for responsive layouts
Before submitting a PR, make sure your changes pass:
pnpm lint # Lint with oxlint
pnpm fmt # Format with oxfmt
pnpm build # Production buildThe CI pipeline will also run:
- Schema validation on document structure
- Link checking on all internal and external links
- Typo checking via the project's typo configuration
- Create a branch for your changes
- Make your edits and verify locally with
pnpm dev - Run
pnpm lintandpnpm buildto catch issues early - Open a pull request with a clear description of the changes