-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
mkdocs.yml
77 lines (77 loc) · 2.35 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
site_name: HelloFlask 文档
site_description: 使用 Python 和 Flask 探索 Web 开发的无限可能。
site_url: https://docs.helloflask.com
docs_dir: docs
theme:
name: material
custom_dir: docs/_templates
logo: _assets/favicon.png
favicon: _assets/favicon.png
features:
- content.code.copy
palette:
primary: black
icon:
repo: fontawesome/brands/github
language: zh
repo_url: https://github.com/greyli/helloflask
repo_name: greyli/helloflask
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/greyli/helloflask
- icon: fontawesome/brands/twitter
link: https://twitter.com/greylihui
copyright: Copyright © 2021 <a href="https://greyli.com" target="_blank" rel="noopener">Grey Li</a>
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
- pymdownx.progressbar
- attr_list
- toc:
permalink: True
nav:
- 主页: index.md
- 获取示例程序: installation.md
- Flask Web 开发实战:
- 第 1 版(2018):
- 主页↗: https://helloflask.com/book/1
- 示例程序: book/1/example.md
- 勘误:
- 主页: book/1/errata/index.md
- 1-1: book/1/errata/1-1.md
- 1-2: book/1/errata/1-2.md
- 1-3: book/1/errata/1-3.md
- 1-4: book/1/errata/1-4.md
- 1-5: book/1/errata/1-5.md
- 1-6: book/1/errata/1-6.md
- 1-7: book/1/errata/1-7.md
- 1-10: book/1/errata/1-10.md
- 1-11: book/1/errata/1-11.md
- 其他勘误: book/1/errata/other.md
- FAQ: book/1/faq.md
- 可改进实现: book/1/improvement.md
- 第 2 版(2024):
- 主页↗: https://helloflask.com/book/4
- 示例程序: book/4/example.md
- Flask 入门教程:
- 主页↗: https://helloflask.com/book/3
- GitHub↗: https://github.com/helloflask/flask-tutorial
- 在线阅读↗: https://tutorial.helloflask.com
- Python Web API 设计与开发:
- 主页↗: https://helloflask.com/book/2
- 变更记录: changes.md
- 知乎专栏↗: https://zhuanlan.zhihu.com/flask
- HelloFlask 主站↗: https://helloflask.com
- 代码厨房社区↗: https://codekitchen.community
plugins:
- search
extra_css:
- _assets/extra.css