-
Notifications
You must be signed in to change notification settings - Fork 21
/
mkdocs.yml
85 lines (79 loc) · 2.26 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: Foundry
repo_name: foundry
repo_url: https://github.com/slackhq/foundry
site_description: "Gradle and IntelliJ build tooling used in Slack's Android projects"
site_author: Slack
remote_branch: gh-pages
copyright: 'Copyright © 2024 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: 'green'
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'black'
accent: 'green'
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:
- 'Overview': index.md
- 'Platforms':
- 'Gradle':
- 'Architecture': platforms/gradle/architecture.md
- 'Dependency Rake': platforms/gradle/dependency-rake.md
- 'Bootstrap': platforms/gradle/bootstrap.md
- 'DSL': platforms/gradle/dsl.md
- 'Utilities': platforms/gradle/utilities.md
# TODO
# - 'Configuration': platforms/gradle/configuration.md
# - 'Lint': platforms/gradle/lint.md
# - 'Testing': platforms/gradle/testing.md
# - 'Skippy': platforms/gradle/skippy.md
# - 'Properties': platforms/gradle/properties.md
# - 'Mod Score': platforms/gradle/mod-score.md
# - 'Formatters & Analysis': platforms/gradle/formatters-and-analysis.md
# - 'Thermals Logging': platforms/gradle/thermals-logging.md
- 'Tools':
- 'CLI': tools/cli.md
# TODO
# - 'Skippy': tools/skippy.md
- 'Discussions ⏏': https://github.com/slackhq/foundry/discussions
- 'Change Log': changelog.md
- 'API': api/0.x/
- 'Contributing': contributing.md
- 'CoC': code-of-conduct.md