-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
109 lines (99 loc) · 2.47 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
site_name: MRouter
site_url: https://erolc.github.io/MRouter/
site_author: ErolC
site_description: >-
router for compose-multiplatform
# Repository
repo_name: ErolC/MRouter
repo_url: https://github.com/erolc/MRouter
# Copyright
copyright: Copyright © 2024 - 2025 ErolC
theme:
palette:
primary: 'purple'
accent: 'deep purple'
name: material
language: 'zh'
feature:
- navigation.tabs
- navigation.expand
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/ErolC
# - icon: fontawesome/brands/twitter
# link: https://twitter.com/squidfunk
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
linenums: false
- toc:
permalink: true
- footnotes
- meta
- def_list
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_png
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
plugins:
- search
- i18n:
docs_structure: suffix
fallback_to_default: true
reconfigure_material: true
reconfigure_search: true
languages:
- locale: en
name: English
build: true
site_name: "MRouter"
- locale: zh
name: 简体中文
build: true
default: true
site_name: "MRouter"
nav_translations:
Getting started: 开始
Overview: 概述
Install: 安装
Introduction: 入门
Route: 路由
Register: 注册
Feature: 功能
Gesture: 手势
Panel: 局部路由
ShareElement: 共享元素
Transform: 变换
nav:
- Getting started:
- Overview: index.md
- Install: started/install.md
- Introduction: started/introduction.md
- Route:
- Register: route/register.md
- Route: route/route.md
- Feature:
- Gesture: feature/gesture.md
- Lifecycle&VM: feature/lifecycle_vm.md
- Panel: feature/panel.md
- ShareElement: feature/share_element.md
- Transform: feature/transform.md