-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
49 lines (41 loc) · 1.09 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
site_name: HDX-MS Datasets
site_description: Loading and parsing of HDX-MS datasets and associated metadata
site_url: https://jhsmit.github.io/hdxms-datasets/
repo_url: https://github.com/Jhsmit/hdxms-datasets/
edit_uri: edit/master/docs/
theme:
name: "material"
markdown_extensions:
- codehilite
- markdown.extensions.codehilite:
guess_lang: false
nav:
- Overview: index.md
- install.md
- Usage:
- usage/loading.md
- API Reference: reference/
watch:
- hdxms_datasets
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
default_handler: python
handlers:
python:
options:
enable_inventory: true
show_signature_annotations: false
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://docs.scipy.org/doc/scipy/objects.inv
- https://pandas.pydata.org/docs/objects.inv
paths: [hdxms_datasets]
extra_css:
- css/styles.css