-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
77 lines (72 loc) · 1.68 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
# mkdocs.yml
site_name: InspireFace
site_url: https://example.com/
theme:
name: material
static_templates:
- assets/images
palette:
- scheme: default
primary: white
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: black
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.expand
- navigation.top
extra_css:
- stylesheets/extra.css
plugins:
- search
- i18n:
default_language: en
languages:
- locale: en
default: true
name: English
build: true
- locale: zh
name: 中文
build: true
nav_translations:
zh:
Getting Started: 开始使用
API Reference: API 参考
Examples: 示例
Guides: 指南
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- tables
nav:
- Home: index.md
- Getting Started:
- Quick Start: getting-started/quickstart.md
- Installation: getting-started/installation.md
- Features:
- Cross Platform: features/cross-platform.md
- Face Recognition: features/face-recognition.md
- Feature Hub: features/feature-hub.md
- Guides:
- Basic: guides/basic.md
- Unit Test: guides/unit-test.md
- Switch CV Backend: guides/switch-cv-backend.md
- CMake Options: guides/cmake-options.md
- Benchmark: guides/benchmark.md