mkdocs-multirepo-plugin
mkdocs-multirepo-plugin copied to clipboard
Problem in the Nav section
trafficstars
Hi, When I try the following configuration:
- "Apps":
- "Architecture":
- "A": "A/index.md"
- "B": "B/index.md"
- "Architecture":
Architecture is displayed as a link to A/index.md and A is not present. but I would like it just to be a parent to the others. To achieve this I have tried the following which leads to my correct scenario but not very elegant.
- "Apps":
- "Architecture":
- "ignore": "A/index.md"
- "A": "A/index.md"
- "B": "B/index.md"
- "Architecture":
Following this approach, Architecture gets the "ignore" as link and then A is rendered.
Any hint?