forked from bumble-tech/appyx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
82 lines (73 loc) · 1.78 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
# General setup
site_name: Appyx
site_url: https://github.com/bumble-tech/appyx
site_author: Bumble
site_description: Application mechanics for your Android apps, built on top of Jetpack Compose
# Repository
repo_name: Appyx
repo_url: https://github.com/bumble-tech/appyx
edit_uri: ""
# Copyright
copyright: Copyright © 2022 - 2022 Bumble
# Navigation
docs_dir: documentation
nav:
- Overview: index.md
- Downloads: setup/downloads.md
- Nodes and routing: basics/nodes-and-routing.md
- Quick start guide: setup/quickstart.md
- Routing sources:
- Overview: routingsources/index.md
- Back stack: routingsources/backstack.md
- Spotlight: routingsources/spotlight.md
- Tiles: routingsources/tiles.md
- Promoter: routingsources/promoter.md
- Writing your own: routingsources/custom.md
- UI:
- Children: ui/children-view.md
- Transitions: ui/transitions.md
- Other topics:
- Lifecycle: other/lifecycle.md
- Plugins: other/plugins.md
- Terminology: other/terminology.md
# theme configuration
theme:
name: 'material'
logo: assets/logo.png
icon:
repo: fontawesome/brands/github
language: en
include_search_page: false
search_index_only: true
features:
# - navigation.tabs
- search.highlight
- search.share
- search.suggest
palette:
scheme: default
primary: amber
accent: amber
font:
text: Roboto
code: Roboto Mono
favicon: assets/favicon.svg
extra_css:
- stylesheets/extra.css
plugins:
- search
# extensions
markdown_extensions:
- admonition
- codehilite
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences