-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
138 lines (128 loc) · 3.64 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# Paths
docs_dir: docs
site_dir: site
# Project information
site_name: Symlex
site_description: A lean framework stack for agile Web development based on Symfony and Vuetify
site_author: Symlex.org
site_url: https://docs.symlex.org/zh/latest
# Repository
repo_name: symlex/symlex
repo_url: https://github.com/symlex/symlex
edit_uri: ""
# Copyright
copyright: 'Made with ❤ in Berlin 中文翻译由 Tuzi Moe 提供'
# Configuration
theme:
name: null
custom_dir: material
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: zh
feature:
tabs: true
palette:
primary: blue grey
accent: cyan
font:
text: Roboto
code: Roboto Mono
favicon: img/favicon.ico
logo: img/favicon.ico
# Customization
extra:
social:
- type: commenting
link: https://gitter.im/symlex/community
- type: twitter
link: https://twitter.com/lastzero
- type: linkedin
link: https://www.linkedin.com/in/lastzero/
- type: globe
link: https://symlex.org/
- type: github-alt
link: https://github.com/symlex
# Extensions
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: pymdownx.emoji.emojione
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Page tree
nav:
- 欢迎: index.md
- 性能: performance.md
- 历史: history.md
- 妥协与否: tradeoffs.md
- 团队: team.md
- 联系我们: contact.md
- 贡献: contribute.md
- 致谢: credits.md
- License: license.md
- Mac OS X: osx.md
- 框架:
- 简易入门: framework.md
- 配置框架: framework/config.md
- 启动框架: framework/kernel.md
- 路由 & Twig: framework/routing.md
- 指令: framework/cli.md
- 网页前端: framework/frontend.md
- 网页控制器: framework/web.md
- REST 控制器: framework/rest.md
- 输入变量: framework/forms.md
- 持久层: framework/models.md
- 错误: framework/errors.md
- Symfony 捆绑包: framework/bundles.md
- 单元测试: framework/unit-tests.md
- 验收测试: framework/acceptance-tests.md
- 核心部分:
- 介绍: core.md
- 内核: core/kernel.md
- 路由: core/routers.md
- DI 微内核:
- 介绍: di-microkernel.md
- 配置: di-microkernel/config.md
- 贡献: di-microkernel/contribute.md
- 输入变量:
- 介绍: input-validation.md
- 创建表单: input-validation/definition.md
- Field Properties: input-validation/properties.md
- REST 示例: input-validation/example.md
- API: input-validation/api.md
- 妥协与否: input-validation/tradeoffs.md
- 贡献: input-validation/contribute.md
- Doctrine ActiveRecord:
- 介绍: doctrine-active-record.md
- 示例: doctrine-active-record/examples.md
- 生产模式: doctrine-active-record/models.md
- Data Access Objects: doctrine-active-record/daos.md
- Search 请求: doctrine-active-record/search.md
- 单元测试: doctrine-active-record/tests.md
- 妥协与否: doctrine-active-record/tradeoffs.md
- 贡献: doctrine-active-record/contribute.md