-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmkdocs.yml
97 lines (91 loc) · 2.72 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
site_name: Panhans | Blueprints and Snippets
site_url: https://panhans.github.io/HomeAssistant/
nav:
- 🏠 Home: "index.md"
- 🔥 Advanced Heating Control:
- 📖 Sections & Inputs:
- 🔘 Thermostats & Sensors: "ahc/thermostats_sensors.md"
- 🌡️ Temperatures: "ahc/temperatures.md"
- 🎛️ Adjustements & Heating Plan: "ahc/adjustments_heating_plan.md"
- 🤜 Force Comfort/Eco Mode: "ahc/force_comfort_eco.md"
- 🎚️ Temperature Tweaks: "ahc/temperature_tweaks.md"
- 👥 Persons: "ahc/persons.md"
- 🕑 Scheduling: "ahc/schedules.md"
- 🚶 Presence Detection: "ahc/presence_detection.md"
- ↔️ Proximity: "ahc/proximity.md"
- 🏃 Away Mode: "ahc/away_mode.md"
- 🪟 Windows & Doors: "ahc/windows_doors.md"
- 🧭 Calibration: "ahc/calibration.md"
- 😡 Aggressive Mode: "ahc/aggressive_mode.md"
- ⌖ Dynamic Valve Positioning: "ahc/dynamic_valve_positioning.md"
docs_dir: docs_src
edit_uri: edit/main/src/
site_dir: docs
extra_css:
- style.css
theme:
name: "material"
language: "en"
font: false
# logo: "assets/logos/website_logo.png"
# favicon: "assets/logos/favicon/favicon-32x32.png"
# custom_dir: "docs/assets/overrides"
palette:
- media: "(prefers-color-scheme: light)"
primary: "white"
toggle:
icon: "material/weather-night"
name: "Dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: "slate"
toggle:
icon: "material/weather-sunny"
name: "Light mode"
features:
- "navigation.instant"
- "navigation.tracking"
- "navigation.top"
- "navigation.tabs"
- "navigation.indexes"
- "search.suggest"
- "search.highlight"
- "search.share"
- "content.code.annotate"
- "content.tabs.link"
markdown_extensions:
- "meta"
- "pymdownx.superfences"
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- "admonition"
- "pymdownx.details"
- "pymdownx.inlinehilite"
# - pymdownx.snippets:
# base_path: [".", "custom_components/ui_lovelace_minimalist"]
# check_paths: true
- "pymdownx.critic"
- "pymdownx.caret"
- "pymdownx.keys"
- "pymdownx.tilde"
- pymdownx.blocks.caption
- pymdownx.magiclink:
repo_url_shorthand: true
user: "Panhans"
repo: "HomeAssistant"
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- "tables"
- "footnotes"
- "attr_list"
- "md_in_html"
- "def_list"
- toc:
permalink: true
plugins:
- "search"
- "awesome-pages"
- "glightbox"