sample output.

example markdown outputs docu maister could generate. see how it works or pricing.

docs/overview.md
# Project overviewThis repository contains a web API and a background worker.## What it does- Serves the public HTTP API- Runs async jobs from a queue## Where to start- `apps/api/`: request handling and routes- `apps/worker/`: job processors- `packages/`: shared utilities and domain logic
docs/architecture.md
# Architecture## High-level flow1. HTTP requests enter via the API router2. Domain services validate input and apply rules3. Persistence is handled by repositories4. Long-running work is queued and processed by the worker## Key modules- `src/domain/`: business rules (pure, testable)- `src/infrastructure/`: database + external integrations- `src/http/`: route handlers and DTO validation
docs/how-to-run-ci.md
# CI usagedocu maister is intended to run in CI.## Suggested workflow1. Run docu maister on every PR2. Commit generated markdown changes in the PR branch3. Review docs diffs like code diffs4. Merge to keep docs up to date on main