-
Notifications
You must be signed in to change notification settings - Fork 25
/
mkdocs.yml
66 lines (60 loc) · 1.46 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
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
site_name: compose-lints
repo_name: compose-lints
repo_url: https://github.com/slackhq/compose-lints
site_description: "Lint checks to aid with a healthy adoption of Compose"
site_author: Slack
remote_branch: gh-pages
copyright: 'Copyright © 2023 Salesforce, Inc.'
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
- 'Rules': rules.md
- 'Discussions ⏏': https://github.com/slackhq/compose-lints/discussions
- 'Change Log': changelog.md
- 'API': api/0.x/
- 'Contributing': contributing.md
- 'CoC': code-of-conduct.md