forked from adrielcafe/voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
95 lines (89 loc) · 2.9 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
83
84
85
86
87
88
89
90
91
92
93
94
95
site_name: Vortex
site_description: "Stability-focused pragmatic navigation for Compose Multiplatform, fork of Voyager."
repo_name: Vortex
repo_url: https://github.com/hristogochev/vortex
nav:
- Overview: index.md
- Setup: setup.md
- Navigation:
- Basic navigation: navigation/index.md
- Nested navigation: navigation/nested-navigation.md
- Bottom sheet navigation: navigation/bottom-sheet-navigation.md
- Advanced navigation: navigation/advanced-navigation.md
- Tab navigation: navigation/tab-navigation.md
- State restoration: state-restoration.md
- ScreenModel:
- Overview: screenmodel/index.md
- Koin integration: screenmodel/koin-integration.md
- Kodein integration: screenmodel/kodein-integration.md
- Transitions: transitions.md
- Lifecycle: lifecycle.md
- Deep links: deep-links.md
- Stack API: stack-api.md
- Work in progress: work-in-progress.md
theme:
name: material
logo: 'img/logo_vortex.png'
favicon: 'img/favicon.ico'
features:
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: 'blue'
accent: 'cyan'
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'indigo'
accent: 'light-blue'
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/hristogochev
markdown_extensions:
# Permalinks on top of pages
- toc:
permalink: true
# Typography improvement
- smarty
# Footnotes
- footnotes
# Meta
- meta
# Do not attempt to guess what language code blocks are for
- codehilite:
guess_lang: false
# Better understanding of '-'
- pymdownx.betterem:
smart_enable: all
# Better caret handling
- pymdownx.caret
# Enables syntax highlighting for inline code blocks and adds support for additional formatting options like styling.
- pymdownx.inlinehilite
# Automatically converts URLs, email addresses, and references to clickable links.
- pymdownx.magiclink
# Automatically converts specific symbols or patterns into their typographic equivalents.
- pymdownx.smartsymbols
# Enhances fenced code blocks with support for nested content, custom rendering, and highlighting.
- pymdownx.superfences
# Just emojis
- pymdownx.emoji
# Adds support for collapsible details blocks, useful for hiding content by default.
- pymdownx.details
# Creates tabbed sections for displaying different content options.
- pymdownx.tabbed:
alternate_style: true
# Enables rendering of Markdown tables.
- tables
# Adds support for admonition blocks, which are callouts boxes for notes, warnings, etc.
- admonition