-
Notifications
You must be signed in to change notification settings - Fork 48
/
mkdocs.yml
111 lines (104 loc) · 2.79 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
110
111
site_name: PicImageSearch
site_url: https://pic-image-search.kituin.fun
site_description: >-
PicImageSearch is an aggregated image search engine for reverse image search.
repo_url: https://github.com/kitUIN/PicImageSearch
repo_name: kitUIN/PicImageSearch
edit_uri: edit/main/docs/
theme:
name: material
icon:
edit: material/pencil
features:
- content.action.edit
- content.action.view
- content.code.copy
- navigation.expand
- navigation.footer
- navigation.top
palette:
- media: (prefers-color-scheme)
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/extra.css
markdown_extensions:
- attr_list
- md_in_html
nav:
- Introduction: index.md
- Docs:
- Engines:
- Ascii2D: engines/ascii2d.md
- Baidu: engines/baidu.md
- Bing: engines/bing.md
- Copyseeker: engines/copyseeker.md
- EHentai: engines/ehentai.md
- Google: engines/google.md
- IQDB: engines/iqdb.md
- SauceNAO: engines/saucenao.md
- Tineye: engines/tineye.md
- TraceMoe: engines/tracemoe.md
- Yandex: engines/yandex.md
- Model:
- Ascii2D: model/ascii2d.md
- Baidu: model/baidu.md
- Bing: model/bing.md
- Copyseeker: model/copyseeker.md
- EHentai: model/ehentai.md
- Google: model/google.md
- IQDB: model/iqdb.md
- SauceNAO: model/saucenao.md
- Tineye: model/tineye.md
- TraceMoe: model/tracemoe.md
- Yandex: model/yandex.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_category_heading: true
show_if_no_docstring: true
show_root_heading: false
show_source: true
paths: [.]
- i18n:
docs_structure: folder
languages:
- name: English
locale: en
build: true
default: true
- name: 简体中文
locale: zh
build: true
nav_translations:
Introduction: 介绍
Docs: 文档
- name: Русский
locale: ru
build: true
nav_translations:
Introduction: Введение
Docs: Документация
- name: 日本語
locale: ja
build: true
nav_translations:
Introduction: 紹介
Docs: ドキュメント
watch:
- PicImageSearch