generated from rochacbruno/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
36 lines (36 loc) · 951 Bytes
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
site_name: scdataloader
theme:
name: readthedocs
# analytics:
# gtag: G-ABC123
site_url: https://www.jkobject.com/scdataloader/
nav:
- Home: index.md
- Example notebooks:
- download and preprocess: notebooks/1_download_and_preprocess.ipynb
- use the dataloader: notebooks/2_create_dataloader.ipynb
- documentation:
- dataset: dataset.md
- preprocess: preprocess.md
- utils: utils.md
- datamodule: datamodule.md
- collator: collator.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_root_heading: true
show_source: true
summary: true
merge_init_into_class: true
show_signature: false
do_heading: true
default_handler: python
- git-revision-date-localized
- git-authors
- mkdocs-jupyter:
include_source: True
include_requirejs: true