-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
90 lines (85 loc) · 2.04 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
site_name: Hyperflask
repo_url: https://github.com/hyperflask/hyperflask
repo_name: hyperflask/hyperflask
edit_uri: https://github.com/hyperflask/hyperflask-docs/edit/main/docs/
copyright: Docs licensed under CC BY-SA 4.0
nav:
- Home: index.md
- why.md
- getting-started.md
- Guides:
- guides/setup.md
- Basics:
- guides/structure.md
- guides/pages.md
- guides/collections.md
- guides/components.md
- guides/assets.md
- Handling data:
- guides/forms.md
- guides/models.md
- guides/resources.md
- Digging deeper:
- guides/emails.md
- guides/tasks.md
- guides/i18n.md
- guides/api.md
- guides/push.md
- guides/deploy.md
- Extensions:
- guides/auth.md
- guides/pwa.md
- How does it work?:
- guides/architecture.md
- guides/app.md
- Components:
- components/buttons.md
- components/forms.md
- Recipes:
- recipes/sending-emails.md
- recipes/monitoring.md
- recipes/analytics.md
- recipes/stripe.md
- recipes/using-cms.md
- recipes/spa.md
theme:
name: material
custom_dir: overrides
palette:
- scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
- primary: white
toggle:
icon: material/weather-sunny
name: Switch to dark mode
features:
- navigation.indexes
- navigation.tabs
- navigation.path
- navigation.top
- navigation.footer
- content.action.edit
- content.code.copy
icon:
edit: material/pencil
favicon: assets/favicon.png
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- callouts
- redirects:
redirect_maps:
'guides/index.md': 'guides/setup.md'
extra_css:
- assets/stylesheets/extra.css