-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
85 lines (82 loc) · 2.22 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
site_name: Trano
site_description: Automated building energy simulation tool with Modelica
repo_name: trano
repo_url: https://github.com/andoludo/trano
theme:
name: material
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/lightbulb-auto
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: default
primary: amber
accent: amber
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: amber
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to system preference
features:
- content.code.annotate
- content.code.copy
# - content.code.select
- content.footnote.tooltips
- content.tabs.link
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
# - navigation.instant.preview
- navigation.instant.progress
- navigation.path
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
icon:
repo: fontawesome/brands/github-alt
logo: img/trano.webp
favicon: img/trano.webp
language: en
plugins:
- search
nav:
- Trano: index.md
- Getting-started:
- Installation: getting-started/installation.md
- Tutorials:
- First simulation: tutorials/first_simulation.md
- First model: tutorials/first_model.md
- Two zones: tutorials/two_zones.md
- Three zones with ideal heating: tutorials/three_zones_ideal_heating.md
- Three zones hydronic heating: tutorials/three_zones_hydronic_heating.md
- How-to Guides: how-to guides/index.md
- Explanation: explanation/index.md
- Reference:
- Components: reference/components.md
- Parameters: reference/parameters.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- markdown_include.include:
base_path: docs
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences