-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmkdocs.yml
83 lines (78 loc) · 2.36 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
site_name: Pydantic-resolve
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- navigation.tabs.sticky
repo_name: allmonday/pydantic-resolve
repo_url: https://github.com/allmonday/pydantic-resolve
edit_uri: ""
# nav:
# - Quick Start:
# - Install: ./v1/index.md
# - Let's start: ./v1/about.md
# - Dataloader: ./v1/dataloader.md
# - Inheritance: ./v1/inherit.md
# - Tree: ./v1/tree.md
# - Philosophy: ./v1/philosophy.md
# - Reference:
# - API: ./v1/reference_api.md
# - Change log:
# - pydantic-resolve: ./v1/changelog.md
nav:
- Quick Start:
- Introduction: ./v2/introduction.md
- Why create it: ./v2/why.md
- Use cases: ./v2/use_case.md
- Schema first: ./v2/schema_first.md
- Features:
- Dataloader: ./v2/dataloader.md
- Inherit and reuse: ./v2/inherit_reuse.md
- ERD Driven Pattern: ./v2/erd_driven.md
- Expose and collect: ./v2/expose_and_collect.md
- Connect to UI: ./v2/connect_to_ui.md
- API:
- Reference: ./v2/api.md
- Change log: ./v2/changelog.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.superfences
plugins:
- i18n:
docs_structure: suffix
languages:
- locale: en
default: true
name: English
build: true
link: "/pydantic-resolve/"
- locale: zh
name: 中文
build: true
link: "/pydantic-resolve/zh/"
nav_translations:
Quick Start: "快速开始"
Introduction: "简介"
Use cases: "应用场景"
Why create it: "为何写个新的库?"
Schema first: "定义数据结构"
Features: "功能介绍"
Dataloader: "数据加载器"
Inherit and reuse: "继承和复用"
Expose and collect: "提供和收集"
Reference: "文档"
Connect to UI: "连接UI"
ERD Driven Pattern: "ERD 驱动开发"
Change log: "变更记录"
Install: "安装"
Let's start: "开始"
Inheritance: "继承"
Philosophy: "迷思"