-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
91 lines (85 loc) · 2.57 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
91
site_name: Mobius.kt
site_description: "Mobius.kt - Kotlin Multiplatform State Management Framework"
site_author: Drew Carlson
site_url: https://drewcarlson.github.io/mobius.kt/
repo_url: https://github.com/DrewCarlson/mobius.kt
repo_name: mobius.kt
edit_uri: blob/main/docs/
remote_branch: gh-pages
copyright: 'Copyright © 2023 Drew Carlson'
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- content.action.edit
palette:
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
docs_dir: docs
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- mike
- markdownextradata: { }
extra:
project: Mobius.kt
lib_version: !ENV [ VERSION, '0.0.1' ]
version:
provider: mike
social:
- icon: fontawesome/solid/heart
link: https://github.com/sponsors/DrewCarlson
- icon: fontawesome/brands/github
link: https://github.com/DrewCarlson/mobius.kt
nav:
- Home: index.md
- Getting Started: getting-started.md
- Download: download.md
- Platforms:
- Android: platforms/android.md
- Jvm: platforms/jvm.md
- Native: platforms/native.md
- Javascript: platforms/javascript.md
- Modules:
- Compose: modules/compose.md
- Code Generation: modules/codegen.md
- Coroutine Support: modules/coroutines.md
- Testing Utilities: modules/testing.md
- Extras: modules/extras.md
- Reference:
- Mobius Loop: reference/mobius-loop.md
- Model: reference/model.md
- Event: reference/event.md
- Effect: reference/effect.md
- Update: reference/update.md
- Effect Handler: reference/effect-handler.md
- Init: reference/init.md
- Event Source: reference/event-source.md
- Patterns:
- Immutability: patterns/immutability.md
- Pure vs Impure functions: patterns/pure-vs-impure-functions.md
- Events and Effects: patterns/events-and-effects.md
- Models: patterns/models.md
- Logging and Error Handling: logging-and-error-handling.md
- Examples: examples.md
- Useful Libraries: useful-libraries.md
- Roadmap: roadmap.md
- Development:
- Documentation: development/documentation.md