-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
54 lines (49 loc) · 1.44 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
site_name: ReactiveState
repo_name: ReactiveState-Kotlin
repo_url: https://github.com/ensody/ReactiveState-Kotlin
site_description: "An easy to understand reactive state management solution for Kotlin and Android"
site_author: Ensody GmbH
copyright: 'Copyright © 2024 Ensody GmbH'
remote_branch: gh-pages
theme:
name: 'material'
logo: 'images/ensody.svg'
favicon: 'images/favicon.ico'
features:
- navigation.expand
extra_css:
- css/extra.css
markdown_extensions:
- admonition
- smarty
- codehilite:
guess_lang: false
linenums: true
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- tables
nav:
- 'Overview': index.md
- 'Guide':
- 'Reactive programming': reactive-programming.md
- 'Multiplatform ViewModels': multiplatform-viewmodels.md
- 'Demand-driven programming': demand-driven-programming.md
- 'Event handling': event-handling.md
- 'State restoration': state-restoration.md
- 'Lifecycle handling': lifecycle-handling.md
- 'Error handling': error-handling.md
- 'Unit testing coroutines': unit-testing-coroutines.md
- 'MutableValueFlow': mutablevalueflow.md
- 'Example: Guess the number': example-guess-the-number.md
- 'API reference': reference/index.md
- 'Changelog': changelog.md