-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
mkdocs.yml
48 lines (43 loc) · 1.07 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
site_name: "Contact Store"
site_description: 'A modern contacts Android API.'
site_author: "Alex Styl"
repo_url: https://github.com/alexstyl/contactstore
repo_name: alexstyl/contactstore
site_url: 'https://alexstyl.github.io/contactstore/'
edit_uri: 'tree/main/docs/'
remote_branch: gh-pages
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
scheme: default
primary: indigo
accent: light blue
font:
text: 'Roboto'
code: 'JetBrains Mono'
features:
- content.code.annotate
nav:
- 'Introduction': index.md
- 'Reading contacts' : read_contacts.md
- 'Writing contacts' : write_contacts.md
- 'Contact lookup' : lookup.md
- 'Testing': testing.md
- 'How-tos':
- '🖼 Contact photos': contact_photos.md
- '🏎 Best practices': best_practices.md
- 'Contributing' : contributing.md
plugins:
- search
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- attr_list
- codehilite:
guess_lang: false