-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
89 lines (89 loc) · 2.57 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: SQLAlchemy CRUD Plus
site_description: Asynchronous CRUD operations based on SQLAlChemy 2.0
site_url: https://wu-clan.github.io/sqlalchemy-crud-plus
site_author: Wu Clan
repo_name: sqlalchemy-crud-plus
repo_url: https://github.com/wu-clan/sqlalchemy-crud-plus
nav:
- Home: index.md
- Installing: installing.md
- Usage:
- 新增:
- 单条: usage/create_model.md
- 多条: usage/create_models.md
- 查询:
- 主键 ID: usage/select_model.md
- 条件过滤: usage/select_model_by_column.md
- Select: usage/select.md
- Select 排序: usage/select_order.md
- 列表: usage/select_models.md
- 列表排序: usage/select_models_order.md
- 更新:
- 主键 ID: usage/update_model.md
- 高级用法: usage/update_model_by_column.md
- 删除:
- 主键 ID: usage/delete_model.md
- 高级用法: usage/delete_model_by_column.md
- Advanced:
- 主键: advanced/primary_key.md
- 冲洗: advanced/flush.md
- 提交: advanced/commit.md
- 条件过滤: advanced/filter.md
- Changelog: changelog.md
theme:
name: material
font:
code: Roboto Mono
palette:
- media: '(prefers-color-scheme)'
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: default
primary: pink
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: teal
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- content.code.annotate
- content.code.select
- navigation.instant
- navigation.instant.progress
- navigation.path
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.footer
- search.suggest
- toc.follow
plugins:
- search
markdown_extensions:
- toc:
permalink: true
- tables
- admonition
- attr_list
- def_list
- md_in_html
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg