Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve menu generation #617

Merged
merged 1 commit into from
Sep 26, 2024
Merged

Improve menu generation #617

merged 1 commit into from
Sep 26, 2024

Commits on Sep 25, 2024

  1. Improve menu generation

    So the origin of the menu's not working is in the way the menu's are defined. The doctrine parser did use * as a deep search wildcard which is not according to the behavior sphinx does it. As the toctree is a directive defined by sphinx we try to follow that one closely. The correct way of writing a toctree is
    
    ```
    .. toctree::
       :glob:
    
       **
    ```
    
    This will include all documents and sections in a project. starting at the level of the current page.
    jaapio committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    6908eec View commit details
    Browse the repository at this point in the history