-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
64 lines (62 loc) · 1.81 KB
/
mkdocs.yml
File metadata and controls
64 lines (62 loc) · 1.81 KB
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
site_name: Constelite
repo_url: https://github.com/Colorifix/constelite
repo_name: Colorifix/constelite
theme:
name: material
icon:
repo: fontawesome/brands/github-alt
logo: img/logo.png
favicon: img/logo.png
features:
- navigation.instant
- navigation.tabs
- navigation.footer
- navigation.indexes
palette:
scheme: slate
primary: blue grey
markdown_extensions:
- attr_list
- md_in_html
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
plugins:
- mkdocstrings
- autorefs
site_dir: site
nav:
- Welcome:
- index.md
- Getting started:
- getting_started/index.md
- User guide:
- getting_started/user_guide/index.md
- Calling protocols: getting_started/user_guide/calling_protocols.md
- Using stores: getting_started/user_guide/using_stores.md
- GraphQL queries: getting_started/user_guide/graphql.md
- Key concepts:
- getting_started/key_concepts/index.md
- State Model: getting_started/key_concepts/state_model.md
- Relationships: getting_started/key_concepts/relations.md
- Store: getting_started/key_concepts/store.md
- Reference: getting_started/key_concepts/ref.md
- Protocol: getting_started/key_concepts/protocol.md
- API: getting_started/key_concepts/api.md
- Hook: getting_started/key_concepts/hook.md
- For Developers:
- for_developers/index.md
- Adding new store: for_developers/new_store.md
- Adding new API: for_developers/new_api.md
- GraphQL: for_developers/graphql.md
- Error Logging: for_developers/error_logging.md