An MkDocs plugin that simplifies configuring page titles and their order through .pages configuration files
Create a helper that builds a MkDocs navigation tree from per-directory nav config files while respecting deterministic resolution priority between explicit pages, explicit directories, and glob patterns.
@generates
from typing import Any, Dict, List
def build_nav(docs_dir: str, config_filename: str = ".nav.yml") -> List[Dict[str, Any]]:
"""
Construct the navigation for the given docs_dir using the dependency's resolution rules.
Returns a list of navigation entries where explicit items take precedence over patterns and duplicates are removed.
"""Provides deterministic navigation resolution for MkDocs content.
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