- add build_wiki_nav deriving MkDocs nav from docs/wiki file structure (index.md -> Home, numeric prefixes stripped and title-cased, nested dirs become groups, natural ordering) - add --wiki / --wiki-dir to build; wiki-only builds need no --module - merge wiki nav before generated lib/api nav; wiki Home replaces the nav spec Home entry - add mkdocs.wiki.yml template fragment and nav/cli tests - dogfood doc-forge's own docs/wiki and regenerate site output
963 B
963 B
Iterative Workflow
A docs build runs through the CLI in a single pass.
Build commands
# Library reference only
doc-forge build --mkdocs --module docforge
# Wik + library combined (single MkDocs build)
doc-forge build --wiki --mkdocs --module docforge
# Wiki only — no module required
doc-forge build --wiki --site-name docforge
What a combined build does
- Validates the requested modes (
--mkdocs,--api,--wiki,--mcp). - Generates library sources under
docs/lib/**withMkDocsRenderer. - Generates API sources under
docs/api/**when--apiis given. - Derives wiki navigation from
docs/wiki/**. - Writes
mkdocs.ymlwith merged navigation — wiki first, generated groups appended, and the wikiHomereplacing any specHomeentry. - Runs
mkdocs buildonce and emits the site.
Explore the site
doc-forge build --wiki --mkdocs --module docforge
doc-forge serve --mkdocs-yml mkdocs.yml