-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
74 lines (69 loc) · 2.31 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
site_name: BuildingsBench
site_description: The documentation for the BuildingsBench platform.
site_author: Patrick Emami
site_url: https://nrel.github.io/BuildingsBench
repo_name: NREL/BuildingsBench
repo_url: https://github.com/NREL/BuildingsBench/
theme:
name: material
features:
- navigation.sections # Sections are included in the navigation on the left.
- toc.integrate # Table of contents is integrated on the left; does not appear separately on the right.
- header.autohide # header disappears as you scroll
palette:
- scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- autorefs # Cross-links to headings
- mkdocstrings:
handlers:
python:
selection:
inherited_members: true # Allow looking up inherited methods
rendering:
show_root_heading: true # actually display anything at all...
show_root_full_path: true # display "diffrax.asdf" not just "asdf"
show_signature_annotations: true
show_source: false # don't include source code
members_order: source # order methods according to their order of definition in the source code, not alphabetical order
heading_level: 4
nav:
- Home: index.md
- Getting Started: getting_started.md
- Running the Benchmark: running.md
- Tutorials: tutorials.md
- API:
- Data:
- API/data/buildings_bench-data.md
- Models:
- API/models/buildings_bench-models.md
- Utilities:
- API/utilities/buildings_bench-evaluation.md
- API/utilities/buildings_bench-tokenizer.md
- API/utilities/buildings_bench-transforms.md
- API/utilities/buildings_bench-utils.md
extra_css:
- css/extra.css
- css/github-permalink-style.css
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- toc:
permalink: ''
toc_depth: 1-2