-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
111 lines (106 loc) · 2.99 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
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
102
103
104
105
106
107
108
109
110
site_name: Frads
site_description: Building lighting and energy simulation control in Python
strict: true
repo_url: https://github.com/LBNL-ETA/frads/
theme:
name: "material"
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: white
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
primary: black
font:
text: OpenSans
features:
# - navigation.tracking
# - navigation.tabs
# - navigation.sections
# - navigation.indexes
- content.tabs.link
- content.code.annotate
- announce.dismiss
- navigation.tabs
- content.code.copy
extra_css: [css/extra.css]
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- def_list
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
options:
member_order: source
separate_signature: true
show_source: false
show_root_heading: true
merge_init_into_class: true
nav:
- Get Started:
- Welcome to frads: index.md
- Why frads: why.md
- Installation: install.md
# - Usage:
# - Phase Methods:
# - Two Phase Method: usage/phase/twophase.md
# - Three Phase Method: usage/phase/threephase.md
# - Five Phase Method: usage/phase/fivephase.md
- How-To Guides:
- how-to/index.md
- CLI Manual:
- manual/index.md
- mrad:
- manual/mrad/index.md
- mrad init: manual/mrad/init.md
- mrad run: manual/mrad/run.md
- gen:
- manual/gen/index.md
- glaze: manual/gen/glaze.md
- grid: manual/gen/grid.md
- matrix:
- manual/gen/matrix/index.md
- point-sky: manual/gen/matrix/point_sky.md
- view-sky: manual/gen/matrix/view_sky.md
- surface-sky: manual/gen/matrix/surface_sky.md
- point-surface: manual/gen/matrix/point_surface.md
- view-surface: manual/gen/matrix/view_surface.md
- surface-surface: manual/gen/matrix/surface_surface.md
- point-sun: manual/gen/matrix/point_sun.md
- view-sun: manual/gen/matrix/view_sun.md
- ncp: manual/gen/matrix/ncp.md
- room: manual/gen/room.md
- Reference:
- WorkflowConfig: ref/config.md
- TwoPhaseMethod: ref/twophase.md
- ThreePhaseMethod: ref/threephase.md
- FivePhaseMethod: ref/fivephase.md
- matrix: ref/matrix.md
- EnergyPlus: ref/eplus.md
- GlazingSystem: ref/window.md
- Sky: ref/sky.md