-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
49 lines (49 loc) · 1.56 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
site_name: 'CANTOK'
theme:
name: material
logo: assets/logo_6.png
favicon: assets/favicon.ico
features:
- content.code.copy
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.indexes
- search.highlight
- search.share
palette:
primary: black
accent: pink
repo_url: https://github.com/pomponchik/cantok
docs_dir: docs
nav:
- Installation: installation.md
- Quick start: quick_start.md
- The pattern: the_pattern.md
- What are tokens:
- In general: what_are_tokens/in_general.md
- Embedding one into another: what_are_tokens/embedding.md
- Cancel and read the status: what_are_tokens/cancel_and_read_the_status.md
- Exceptions: what_are_tokens/exceptions.md
- Summation: what_are_tokens/summation.md
- Waiting for cancellation: what_are_tokens/waiting.md
- Types of tokens:
- SimpleToken: types_of_tokens/SimpleToken.md
- ConditionToken: types_of_tokens/ConditionToken.md
- TimeoutToken: types_of_tokens/TimeoutToken.md
- CounterToken: types_of_tokens/CounterToken.md
- DefaultToken: types_of_tokens/DefaultToken.md
- Ecosystem:
- About the ecosystem: ecosystem/about_ecosystem.md
- Projects:
- Subprocess Management: ecosystem/projects/subprocess_management.md
- Regular functions calling: ecosystem/projects/regular_functions_calling.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences