forked from slackhq/circuit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
85 lines (79 loc) · 2.59 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
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
site_name: Circuit
repo_name: Circuit
repo_url: https://github.com/slackhq/circuit
site_description: "A Compose-driven architecture for Android apps"
site_author: Slack
remote_branch: gh-pages
copyright: 'Copyright © 2022 Slack Technologies, LLC'
theme:
name: 'material'
favicon: images/slack_logo_small.png
logo: images/slack_logo.png
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: 'white'
accent: 'yellow'
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'black'
accent: 'yellow'
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: 'Lato'
code: 'Fira Code'
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.emoji
- tables
- admonition
nav:
- 'Introduction': index.md
- 'Setting up Circuit': setup.md
- 'States and Events': states-and-events.md
- 'Screen': screen.md
- 'CircuitContent': circuit-content.md
- 'Navigation': navigation.md
- 'Presenter': presenter.md
- 'Ui': ui.md
- 'Testing': testing.md
- 'Factories': factories.md
- 'Code Generation': code-gen.md
- 'Interop': interop.md
- 'API':
- 'circuit-runtime': api/0.x/circuit-runtime/com.slack.circuit.runtime/index.html
- 'circuit-runtime-presenter': api/0.x/circuit-runtime-presenter/com.slack.circuit.runtime.presenter/index.html
- 'circuit-runtime-ui': api/0.x/circuit-runtime-ui/com.slack.circuit.runtime.ui/index.html
- 'circuit-foundation': api/0.x/circuit-foundation/com.slack.circuit.foundation/index.html
- 'circuit-overlay': api/0.x/circuit-overlay/com.slack.circuit.overlay/index.html
- 'circuit-retained': api/0.x/circuit-retained/com.slack.circuit.retained/index.html
- 'circuit-test': api/0.x/circuit-test/com.slack.circuit.test/index.html
- 'circuit-codegen-annotations': api/0.x/circuit-codegen-annotations/com.slack.circuit.codegen.annotations/index.html
- 'backstack': api/0.x/backstack/com.slack.circuit.backstack/index.html
- 'Discussions ⏏': https://github.com/slackhq/circuit/discussions
- 'Change Log': changelog.md
- 'Contributing': contributing.md
- 'CoC': code-of-conduct.md