Skip to content

Documentation Design

Tools & Technology Choices

Static Site Generator

  • Choice: MkDocs with Material theme
  • Rationale:
  • Markdown-based for ease of writing
  • Good integration with Python tooling
  • Modern, responsive design
  • Active community support

API Documentation

  • Choice: MkDocstrings
  • Rationale:
  • Native MkDocs integration
  • Support for Google-style docstrings
  • Clean, hierarchical output
  • Good code navigation features

Version Control

  • Choice: Git + GitHub Pages
  • Rationale:
  • Free hosting
  • Automatic deployment
  • Version tracking
  • PR-based reviews

Structure Decisions

Documentation Types

  1. User Documentation (Markdown)
  2. Installation guides
  3. User manuals
  4. Tutorials

  5. API Documentation (Docstrings)

  6. Class/function documentation
  7. Code examples
  8. Type hints

  9. Development Documentation

  10. Architecture decisions
  11. Contribution guides
  12. Development setup

File Organization

  • User-facing content in /user_guide
  • API reference in /api
  • Development docs in /development