-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmkdocs.yml
98 lines (88 loc) · 2.51 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
site_name: ESP32 SvelteKit
nav:
- Home: index.md
- "Build Tools":
- gettingstarted.md
- buildprocess.md
- "Front End":
- sveltekit.md
- structure.md
- stores.md
- components.md
- "Back End":
- statefulservice.md
- restfulapi.md
site_author: elims
site_description: >-
A simple, secure and extensible framework for IoT projects on ESP32 platforms with responsive Sveltekit front-end built with TailwindCSS and DaisyUI.
# Repository
repo_name: theelims/ESP32-sveltekit
repo_url: https://github.com/theelims/ESP32-sveltekit
theme:
name: material
logo: media/svelte-logo.png
favicon: media/favicon.png
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
primary: blue
accent: blue
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
primary: indigo
accent: indigo
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- toc.follow
- toc.integrate
- navigation.top
- content.code.copy
markdown_extensions:
- attr_list
- md_in_html
- tables
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/theelims/
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
actions:
- accept
- reject
plugins:
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
copyright: |
Copyright © 2024 by <a href="https://github.com/theelims" target="_blank" rel="noopener">elims</a> -
<a href="#__consent">Change cookie settings</a>