Surfaced during review of #339.
mkdocs.yml sets docs_dir: ., which current MkDocs rejects because the docs directory is the parent of the config file. As a result mkdocs build --strict fails before page rendering, both locally and in any strict-docs CI.
This is pre-existing and unrelated to any single PR (contributors hit it whenever they try a strict build).
Fix: move docs under a real docs/ directory (or point docs_dir at the actual docs folder) and update the nav paths accordingly.
Refs #339.
Surfaced during review of #339.
mkdocs.ymlsetsdocs_dir: ., which current MkDocs rejects because the docs directory is the parent of the config file. As a resultmkdocs build --strictfails before page rendering, both locally and in any strict-docs CI.This is pre-existing and unrelated to any single PR (contributors hit it whenever they try a strict build).
Fix: move docs under a real
docs/directory (or pointdocs_dirat the actual docs folder) and update the nav paths accordingly.Refs #339.