-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
101 lines (96 loc) · 2.81 KB
/
mkdocs.yml
File metadata and controls
101 lines (96 loc) · 2.81 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
site_name: globi
repo_url: https://github.com/mitsustainabledesignlab/globi
site_url: https://mitsustainabledesignlab.github.io/globi
site_description: This is a repository for running energy simulations as part of the Global Building Inventory (globi) project.
site_author: MIT Sustainable Design Lab
edit_uri: edit/main/docs/
repo_name: mitsustainabledesignlab/globi
copyright: Maintained by <a href="https://github.com/mitsustainabledesignlab">MIT Sustainable Design Lab</a>.
nav:
- Home: index.md
- Use Cases: use-cases.md
- Workflow:
- Workflow overview: architecture-simple.md
- Tutorials:
- Getting Started:
- Requirements: tutorials/getting-started/requirements.md
- Run Simulations:
- Simulation Tasking: tutorials/run-simulations/simulation_tasking.md
- Simulate Building: tutorials/run-simulations/simulate_building.md
- Inputs and Outputs: tutorials/run-simulations/inputs_and_outputs.md
- Visualization:
- Visualization Engine: tutorials/visualization/visualization.md
- Reference:
- CLI: reference/cli.md
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append('../')
options:
show_source: false
# show_submodules: true
theme:
name: material
feature:
tabs: true
features:
- content.code.annotate
# - toc.follow
# - toc.integrate
- navigation.top
- navigation.path
- navigation.indexes
- navigation.sections
- navigation.tracking
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
icon:
repo: fontawesome/brands/github
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/mitsustainabledesignlab/globi
- icon: fontawesome/brands/python
link: https://pypi.org/project/globi
markdown_extensions:
- toc:
permalink: "#"
- admonition
- pymdownx.details
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- tables
- mkdocs-click