This repository contains the Markdown source files for the AutoSDV documentation.
# Install dependencies
just setup
# Build documentation
just build
# Serve locally (with live reload)
just serveDocumentation will be available at http://localhost:3000
book/
├── src/ # Markdown source files
│ ├── index.md # Homepage
│ ├── getting-started/ # Getting started guides
│ ├── guides/ # Tutorial guides
│ └── reference/ # Technical reference
├── scripts/ # Translation checking tools
├── mkdocs.yml # MkDocs configuration
└── justfile # Build commands
- Edit markdown files in
src/ - Build and preview:
just serve - Validate:
just check - Submit PR
- Create
.zh-TW.mdfile alongside English version - Translate content (see CLAUDE.md)
- Validate:
just check - Submit PR
just # List all commands
just setup # Install dependencies
just build # Build documentation
just serve # Serve with live reload
just check # Check deps, validate docs, check translations
just clean # Remove build outputs- Framework: MkDocs with Material theme
- i18n: mkdocs-static-i18n (English + Traditional Chinese)
- Search: Built-in with jieba for Chinese
- Build: Just command runner
