-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
45 lines (39 loc) · 1007 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
37
38
39
40
41
42
43
44
45
site_name: Pydre documentation
theme:
name: material
font:
text: BuckeyeSans
palette:
scheme: OSU
extra_css:
- stylesheets/extra.css
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_root_heading: false
show_source: false
separate_signature: true
line_length: 100
show_signature_annotations: true
signature_crossrefs: true
remote_name: GitHub
markdown_extensions:
- admonition
- footnotes
- pymdownx.details
- pymdownx.superfences
nav:
- Home: 'index.md'
- Tutorial:
- Getting Started: 'tutorial/getting_started.md'
- Reference:
- Filter definitions: 'reference/filters.md'
- Metric definitions: 'reference/metrics.md'
- SAE Standards: 'reference/metricStandards.md'
- Explanation:
- Project files: 'explanation/project_files.md'
- Regions of Interest: 'explanation/rois.md'
- Developer Notes: 'explanation/developernotes.md'