forked from f2prateek/rx-preferences
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
61 lines (54 loc) · 1.5 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
site_name: Rx-Preferences
site_url: https://rx-preferences.frybits.com
site_description: Reactive SharedPreferences for Android
site_author: Pablo Baxter
repo_name: Rx-Preferences
repo_url: https://github.com/pablobaxter/rx-preferences
remote_branch: gh-pages
edit_uri: ""
copyright: 'Copyright © 2024 Pablo Baxter'
theme:
logo: assets/images/icon.png
favicon: assets/images/icon.png
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: purple
toggle:
icon: octicons/sun-24
name: "Switch to Dark Mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: purple
toggle:
icon: octicons/moon-24
name: "Switch to Light Mode"
features:
- navigation.tabs
- content.tabs.link
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- 'Overview':
- 'Overview': index.md
- 'Libraries':
- 'Core': core.md
- 'Coroutines': coroutines.md
- 'LiveData': livedata.md
- 'Rx2': rx2.md
- 'Rx3': rx3.md
- 'Migrating from f2prateek/rx-preferences': migration.md
- 'API': api/
- 'Changelog': changelog.md