Skip to content

Commit 407bf11

Browse files
Basic documentation (#44)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 3d25f23 commit 407bf11

File tree

12 files changed

+567
-1619
lines changed

12 files changed

+567
-1619
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@ __pycache__/
2828
/.vscode/
2929

3030
format.sh
31+
32+
# jupyter checkpoints
33+
.ipynb_checkpoints

docs/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ help:
2121

2222
clean:
2323
rm -r "$(BUILDDIR)"
24-
rm -r "generated"

docs/api.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@
118118
nitpick_ignore = [
119119
# If building the documentation fails because of a missing link that is outside your control,
120120
# you can add an exception to this list.
121-
# ("py:class", "igraph.Graph"),
121+
("py:class", "spatialdata._core.spatialdata.SpatialData"),
122+
("py:class", "xarray.core.dataarray.DataArray"),
123+
("py:class", "matplotlib.axes._axes.Axes"),
122124
]
123125

124126

docs/index.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,31 @@
44

55
```{toctree}
66
:hidden: true
7-
:maxdepth: 1
7+
:maxdepth: 2
8+
:caption: API
9+
10+
preprocessing.rst
11+
plotting.rst
12+
13+
```
14+
15+
```{toctree}
16+
:hidden: true
17+
:maxdepth: 2
18+
:caption: Tutorials
19+
20+
notebooks/preprocessing
21+
notebooks/demo
22+
23+
```
24+
25+
```{toctree}
26+
:hidden: true
27+
:maxdepth: 2
28+
:caption: Other
829
9-
api.md
1030
changelog.md
1131
template_usage.md
1232
contributing.md
1333
references.md
14-
15-
notebooks/demo
1634
```

docs/notebooks/demo.ipynb

Lines changed: 21 additions & 56 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)