Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for generate_renamed_section_items (0.1 sec)

  1. scripts/mkdocs_hooks.py

        return files
    
    
    def generate_renamed_section_items(
        items: list[Union[Page, Section, Link]], *, config: MkDocsConfig
    ) -> list[Union[Page, Section, Link]]:
        new_items: list[Union[Page, Section, Link]] = []
        for item in items:
            if isinstance(item, Section):
                new_title = item.title
                new_children = generate_renamed_section_items(item.children, config=config)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top