-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
60 lines (55 loc) · 1.42 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
# Project information
site_name: 'Pilot'
site_description: 'A library that allows you to share viewmodels, navigation and components on android and iOS'
site_author: 'Mirego'
site_url: 'https://mirego.github.io/pilot/'
edit_uri: 'tree/main/docs/'
remote_branch: gh-pages
docs_dir: build/docs
# Repository
repo_name: 'Pilot'
repo_url: 'https://github.com/mirego/viewmodel-pilot'
# Markdown extensions
markdown_extensions:
- admonition
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- codehilite:
guess_lang: false
- footnotes
- toc:
permalink: true
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
theme:
name: 'material'
language: 'en'
icon:
logo: material/account-tie-hat
palette:
primary: 'black'
accent: 'deep orange'
font:
text: 'Roboto'
code: 'JetBrains Mono'
# Navigation
nav:
- 'Overview': index.md
- 'ViewModel':
- 'Guide': viewmodel.md
- 'API': api/viewmodel/
- 'Navigation':
- 'Guide': navigation.md
- 'API': api/navigation/
- 'Components':
- 'Guide': components.md
- 'API': api/components/
- 'API Coil': api/components-coil/
- 'API Material3': api/components-material3/
- 'Changelog': changelog.md
- 'Code of conduct': code-of-conduct.md