-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
mkdocs.yml
94 lines (85 loc) · 3.88 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
87
88
89
90
91
92
93
94
## Testing the website locally for development
# pip install -r docs/requirements.txt
# ./docs/DocsCopier.main.kts (see here to install Kotlin: https://kotlinlang.org/docs/command-line.html)
# mkdocs serve
## Building the website locally and see the warnings in the terminal:
# mkdocs build --site-dir build/website
site_name: Splitties
repo_name: LouisCAD/Splitties
repo_url: https://github.com/LouisCAD/Splitties
edit_uri: edit/main # Needed because we copy docs.
remote_branch: gh-pages
site_description: "Life is too short to google for dependencies and versions"
site_author: LouisCAD
copyright: 'Copyright © 2021 Louis CAD'
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
primary: 'green'
accent: 'blue'
extra_css:
- stylesheets/extra.css
markdown_extensions:
- mdx_truly_sane_lists # Makes 2 spaces (instead of 4) enough for nested lists (as GFM supports).
- toc:
permalink: true # Brings buttons for anchor links (doesn't actually bring true permalinks).
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tilde
plugins:
- search
- markdownextradata: {}
nav:
- 'Overview': README.md
- 'Modules':
- 'Activities': modules/activities/README.md
- 'Alert Dialog': modules/alertdialog/README.md
- 'Alert Dialog AppCompat': modules/alertdialog-appcompat/README.md
- 'Alert Dialog AppCompat Coroutines': modules/alertdialog-appcompat-coroutines/README.md
- 'Alert Dialog Material': modules/alertdialog-material/README.md
- 'App Context': modules/appctx/README.md
- 'Arch Lifecycle': modules/arch-lifecycle/README.md
- 'Arch Room': modules/arch-room/README.md
- 'Bit Flags': modules/bitflags/README.md
- 'Bundle': modules/bundle/README.md
- 'Collections': modules/collections/README.md
- 'Coroutines': modules/coroutines/README.md
- 'Checked Lazy': modules/checkedlazy/README.md
- 'Dimensions': modules/dimensions/README.md
- 'Exceptions': modules/exceptions/README.md
- 'Fragments': modules/fragments/README.md
- 'Fragment Args': modules/fragmentargs/README.md
- 'Intents': modules/intents/README.md
- 'Lifecycle Coroutines': modules/lifecycle-coroutines/README.md
- 'Main Handler': modules/mainhandler/README.md
- 'Main Thread': modules/mainthread/README.md
- 'Material Colors': modules/material-colors/README.md
- 'Material Lists': modules/material-lists/README.md
- 'Preferences': modules/preferences/README.md
- 'Permissions': modules/permissions/README.md
- 'Resources': modules/resources/README.md
- 'Selectable Views': modules/views-selectable/README.md
- 'Selectable Views AppCompat': modules/views-selectable-appcompat/README.md
- 'Selectable Views ConstraintLayout': modules/views-selectable-constraintlayout/README.md
- 'Snackbar': modules/snackbar/README.md
- 'Stetho init': modules/stetho-init/README.md
- 'System Services': modules/systemservices/README.md
- 'Toast': modules/toast/README.md
- 'Typesafe RecyclerView': modules/typesaferecyclerview/README.md
- 'Views': modules/views/README.md
- 'Views AppCompat': modules/views-appcompat/README.md
- 'Views CardView': modules/views-cardview/README.md
- 'Views Coroutines': modules/views-coroutines/README.md
- 'Views Coroutines Material': modules/views-coroutines-material/README.md
- 'Views DSL': modules/views-dsl/README.md
- 'Views DSL AppCompat': modules/views-dsl-appcompat/README.md
- 'Views DSL ConstraintLayout': modules/views-dsl-constraintlayout/README.md
- 'Views DSL CoordinatorLayout': modules/views-dsl-coordinatorlayout/README.md
- 'Views DSL Material': modules/views-dsl-material/README.md
- 'Views DSL RecyclerView': modules/views-dsl-recyclerview/README.md
- 'Views Material': modules/views-material/README.md
- 'Views RecyclerView': modules/views-recyclerview/README.md
- 'Change Log': CHANGELOG.md