-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmkdocs.yml
More file actions
100 lines (94 loc) · 2.36 KB
/
mkdocs.yml
File metadata and controls
100 lines (94 loc) · 2.36 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
site_name: App Platform
site_url: https://amzn.github.io/app-platform/
repo_name: app-platform
repo_url: https://github.com/amzn/app-platform
edit_uri: edit/main/docs/
site_description: "A lightweight application framework for state and memory management suitable for Kotlin Multiplatform projects."
remote_branch: gh-pages
copyright: 'Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.'
# https://squidfunk.github.io/mkdocs-material/
theme:
name: 'material'
favicon: images/favicon.png
logo: images/logo.svg
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: blue grey
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: blue grey
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: 'Inter'
code: 'Fira Code'
features:
- content.code.annotate
- content.code.copy
- content.code.select
- content.tooltips
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- toc.follow
- toc.integrate
- content.tabs.link
- content.action.edit
icon:
edit: material/pencil
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- def_list
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- tables
- admonition
- attr_list
- md_in_html
nav:
- 'Introduction': index.md
- 'Setup': setup.md
- 'Module Structure': module-structure.md
- 'Scope': scope.md
- 'Presenter': presenter.md
- 'Renderer': renderer.md
- 'Template': template.md
- 'DI Framework': di.md
- 'Testing': testing.md
- 'FAQ': faq.md
- 'Changelog': changelog.md
plugins:
- search
- social:
cards_layout_options:
logo: docs/images/app-platform-logo.png