An MkDocs plugin that simplifies configuring page titles and their order through .pages configuration files
A small utility that reports final navigation titles for documentation directories, honoring index-based title resolution and override rules.
title frontmatter from its index.md to name the section; if no metadata exists, fall back to the formatted directory name. @testnav entry or its own config file, that title replaces any index-based title; raw directory names take precedence when directory-name preservation is enabled. @test@generates
def build_title_report(docs_root: str) -> list[dict[str, str]]:
"""
Process the documentation tree rooted at docs_root using .nav.yml files and
return a depth-first list of directories with their final navigation titles.
Each item must include "path" (relative directory path, dot for root) and
"title" (resolved navigation title after applying config, inheritance, and
override rules).
"""Provides navigation rebuilding with .nav.yml-driven title resolution.
tessl i tessl/pypi-mkdocs-awesome-pages-plugin@2.10.0evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10