-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmkdocs.yml
68 lines (63 loc) · 1.98 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
site_name: FlowRedux
site_url: https://freeletics.github.io/FlowRedux/
repo_name: FlowRedux
repo_url: https://github.com/freeletics/FlowRedux
site_description: "Kotlin Multiplatform library to create state machines"
site_author: Freeletics
copyright: 'Copyright © 2023 Freeletics.'
theme:
name: 'material'
favicon: images/icon-freeletics.svg
logo: images/logo-freeletics.svg
features:
- navigation.sections
- navigation.tracking
- navigation.tabs
- content.tabs.link
- toc.integrate
nav:
- 'Getting Started': index.md
- 'User Guide':
- 'State and Action': user-guide/1_FlowReduxStateMachine.md
- 'inState block': user-guide/2_inState.md
- 'onEnter block': user-guide/3_onEnter.md
- 'State and ChangedState': user-guide/4_State-ChangedState.md
- 'onAction block': user-guide/5_onAction.md
- 'collectWhileInState block': user-guide/6_collectWhileInState.md
- 'Effects': user-guide/7_effects.md
- 'Condition block': user-guide/8_condition.md
- 'untilIdentityChanged block': user-guide/9_untilIdentityChanged.md
- 'Acting across multiple states': user-guide/10_accross-multiple-states.md
- 'ExecutionPolicy': user-guide/11_ExecutionPolicy.md
- 'Improve readability': user-guide/12_improve-readability.md
- 'Composing statemachines': user-guide/13_composing-statemachines.md
- 'Writing test': user-guide/14_testing.md
- 'DSL-Cheatsheet': dsl-cheatsheet.md
- 'Compose': compose.md
- 'API':
- 'DSL': API/dsl
- 'Compose': API/compose
- 'Contributing': contributing.md
- 'Changelog': changelog.md
extra_css:
- 'css/app.css'
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tilde
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables