Files
semantica/docs/TESTING.md
T
KaifAhmad1 727285171a docs: Modern documentation redesign with enhanced navigation
- Reorganize navigation structure (left sidebar: Home, Quickstart, Installation, Cookbook Recipes, Learning More, Deep Dive, API References)
- Add TOC sections on homepage (Features, How to Read this Documentation, Resources)
- Create new pages: learning-more.md, deep-dive.md, community-projects.md, citation.md, license.md
- Add Mermaid diagrams for architecture, workflows, and concepts
- Enhance all documentation pages with better code examples and explanations
- Add custom CSS for modern aesthetic (docs/css/custom.css)
- Update mkdocs.yml with Material theme, Mermaid support, and enhanced features
- Improve user-friendly navigation and clear visual hierarchy
- Add diagrams and charts throughout documentation
2025-11-21 21:57:10 +05:30

661 B

Testing Documentation Locally

Quick Start

Install Dependencies

pip install -r requirements-docs.txt

Run Local Server

mkdocs serve

Then visit: http://127.0.0.1:8000

Build Static Site

mkdocs build

Output will be in the site/ directory.

Development Workflow

  1. Make changes to .md files in docs/
  2. Run mkdocs serve to preview
  3. Check changes in browser
  4. Commit and push when ready

Troubleshooting

Port Already in Use

mkdocs serve -a 127.0.0.1:8001

Clear Cache

mkdocs build --clean

Check Configuration

mkdocs build --verbose