We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca4304 commit 2aef242Copy full SHA for 2aef242
3 files changed
.github/workflows/test_build_documentation.yml
@@ -28,7 +28,9 @@ jobs:
28
extract-data: false
29
python-version: "3.10"
30
- name: Build documentation
31
- run: mkdocs build
+ run: |
32
+ ln -s notebooks docs/examples/notebooks
33
+ mkdocs build
34
- name: Deploy documentation
35
if: github.ref == 'refs/heads/main'
36
run: mkdocs gh-deploy
docs/examples/.gitkeep
mkdocs.yml
@@ -46,7 +46,8 @@ nav:
46
- Home: index.md
47
- Getting started:
48
- installation.md
49
- - basic_example.md
+ - Example Notebooks:
50
+ - examples/notebooks/test_ratedetection.ipynb
51
- API Documentation:
52
- api/loading.md
53
- Data Containers:
@@ -115,6 +116,7 @@ plugins:
115
116
glob:
117
- __pycache__/*
118
- autorefs
119
+ - mkdocs-jupyter
120
- mkdocstrings:
121
handlers:
122
python:
0 commit comments