mkdocs-jupyter icon indicating copy to clipboard operation
mkdocs-jupyter copied to clipboard

Support for nested pages

Open tiefenthaler opened this issue 9 months ago • 0 comments

Mkdocs-jupyter does not support nested pages to be configured in the mkdocs.yml like:

nav:
  - Home: index.md
  - Source Code API Reference:
      - Autoencoder: api/autoencoder.md
      - Training: api/training.md
      - FastAPI: api/fastapi_app.md
  # NOTE: Does not support nested lists.
  - Notebooks 
    - Main: main.ipynb
    - Demo: demo.ipynb

Only supports not nested structure:

nav:
  - Home: index.md
  - Source Code API Reference:
      - Autoencoder: api/autoencoder.md
      - Training: api/training.md
      - FastAPI: api/fastapi_app.md
  # NOTE: Does not support nested lists.
  - Notebooks - Main: main.ipynb
  - Notebooks - Demo: demo.ipynb

tiefenthaler avatar Feb 10 '25 00:02 tiefenthaler