forked from slackhq/circuit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
86 lines (80 loc) · 1.99 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
# 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'
features:
- content.code.copy
- content.code.select
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
- pymdownx.tabbed:
alternate_style: true
- tables
- admonition
- attr_list
- md_in_html
nav:
- 'Introduction': index.md
- 'Tutorial': tutorial.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
- 'Overlays': overlays.md
- 'Testing': testing.md
- 'Factories': factories.md
- 'Code Generation': code-gen.md
- 'Interop': interop.md
- 'CircuitX': circuitx.md
- 'API': api/0.x/index.html
- 'Discussions ⏏': https://github.com/slackhq/circuit/discussions
- 'Change Log': changelog.md
- 'Contributing': contributing.md
- 'CoC': code-of-conduct.md