-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
52 lines (50 loc) · 1.45 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
site_name: Python Hooks
theme:
logo: images/favicon.ico
name: material
favicon: images/favicon.ico
palette:
scheme: slate
primary: red
accent: pink
features:
- content.code.copy
- content.code.annotate
- navigation.expand
nav:
- Overview: index.md
- Inspiration: inspiration.md
- Getting started: getting_started.md
- 'Hooks':
- 'Base Hooks':
- use_state Hook: hooks/base_hooks/use_state.md
- use_effect Hook: hooks/base_hooks/use_effect.md
- use_context Hook: hooks/base_hooks/use_context.md
- 'Additional Hooks':
- use_reducer Hook: hooks/additional_hooks/use_reducer.md
- Custom Hooks: hooks/additional_hooks/custom_hooks.md
- 'Scoping':
- Default Scoping: scoping/default_scoping.md
- Scope Decorator: scoping/scope_decorator.md
- 'Backends':
- What are backends: backends/default.md
- 'Plugins':
- Zustand: plugins/zustand.md
- Redux: plugins/redux.md
- Async Support: async.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/amitassaraf/python-hooks
copyright: Copyright © 2023 Amit Assaraf
repo_url: https://github.com/amitassaraf/python-hooks
repo_name: amitassaraf/python-hooks