-
Notifications
You must be signed in to change notification settings - Fork 90
/
mkdocs.yml
67 lines (60 loc) · 1.85 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
site_name: MVICore
site_description: MVI framework (not just) for Android, with events, middlewares, and time-travel debugger.
site_author: Badoo
site_url: https://badoo.github.io/mvicore
repo_name: MVICore
repo_url: https://github.com/badoo/MVICore
edit_uri: edit/master/documentation
copyright: 'Copyright © 2019 Badoo Trading Limited'
theme:
name: 'material'
logo:
icon: 'code'
palette:
primary: 'deep purple'
accent: 'pink'
social:
- type: 'github'
link: 'https://github.com/badoo/MVICore'
font:
text: 'Fira Sans'
code: 'Fira Mono'
markdown_extensions:
- admonition
- codehilite
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
docs_dir: documentation
nav:
- Overview: index.md
- Features:
- Core concepts: features/coreconcepts.md
- Your first and simplest feature: features/reducerfeature.md
- Handling async jobs: features/actorreducerfeature.md
- Going full-featured: features/fullfeatured.md
- Bootstrappers: features/bootstrappers.md
- News and inter-feature communication: features/news.md
- Binder:
- Binder usage and lifecycle: binder/binder.md
- Binding Features to the UI: binder/binding.md
- Lifecycle handling on Android: binder/android.md
- Middlewares and time travel:
- What is a middleware?: middlewares/middleware.md
- Automatic wrapping of reactive components with Middlewares: middlewares/wrapping.md
- Middleware configurations: middlewares/configuration.md
- LoggingMiddleware: middlewares/loggingmiddleware.md
- PlaybackMiddleware: middlewares/playbackmiddleware.md
- Example app: demoproject.md
- Best practices: bestpractices.md
- Extras:
- Time Travel Debugger UI controls: extras/ttdui.md
- IntelliJ plugin: extras/intellijplugin.md