forked from UI-Lovelace-Minimalist/UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
91 lines (85 loc) · 2.37 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
---
# Project information
site_name: "UI Lovelace Minimalist"
site_url: "https://ui-lovelace-minimalist.github.io/UI/"
# Repository
repo_url: "https://github.com/UI-Lovelace-Minimalist/UI"
repo_name: "UI-Lovelace-Minimalist/UI"
edit_uri: "edit/dev/docs"
# https://pythonrepo.com/repo/lukasgeiter-mkdocs-awesome-pages-plugin-python-documentation
nav:
- Home: "index.md"
- Setup:
- Download: "setup/download.md"
- Installation: "setup/installation.md"
- Configuration: "setup/configuration.md"
- Customizing: "setup/customizing.md"
- Custom cards: "setup/custom_cards.md"
- "... | usage/**/*.md"
- Development:
- Card Style Guide: "development/card_style_guide.md"
- Docs Style Guide: "development/docs_style_guide.md"
- Custom-Cards: "development/custom_cards.md"
- Troubleshooting/FAQ:
- FAQ: "troubleshooting/troubleshooting.md"
extra_css:
- "assets/stylesheets/extra.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:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.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.magiclink:
repo_url_shorthand: true
user: "UI-Lovelace-Minimalist"
repo: "UI"
- "tables"
- "footnotes"
- "attr_list"
- "md_in_html"
- "def_list"
- toc:
permalink: true
plugins:
- "search"
- "awesome-pages"