-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmkdocs.yaml
110 lines (105 loc) · 2.78 KB
/
mkdocs.yaml
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
site_name: POS 系統
site_url: https://evan361425.github.io/flutter-pos-system
site_description: 開源的 Flutter 應用程式,希望和使用者一起建立一個好用的 POS 系統(點餐系統)
docs_dir: docs/
repo_name: GitHub
repo_url: https://github.com/evan361425/flutter-pos-system
edit_uri: https://github.com/evan361425/flutter-pos-system/edit/master
nav:
- README.md
- Contribute: about/contribute.md
- Structure: about/structure.md
- Maintenance:
- Deployment: maintenance/deployment.md
- Development: maintenance/development.md
- Dependencies: maintenance/bump-dependencies.md
- Document:
- Code of Conduct: CODE_OF_CONDUCT.md
- License: LICENSE.md
- Privacy Policy: PRIVACY_POLICY.md
theme:
name: material
language: "en"
custom_dir: docs/overrides
features:
- search.suggest
- search.highlight
- navigation.tabs
- navigation.tabs.sticky
- content.code.annotate
- content.code.copy
favicon: images/favicon.ico
logo: images/logo.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: light-blue
toggle:
icon: material/weather-sunny
name: Dark Mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue-grey
accent: deep orange
toggle:
icon: material/weather-night
name: Light Mode
markdown_extensions:
# 展開用:??? info "title"
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences:
- toc:
# 增加 anchor
permalink: true
toc_depth: 3
# 重新命名
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
# 允許增加 tooltip,於 MD 檔下方中增加下列說明
# *[Text]: Description
- abbr
# 允許設定警告卡片
# !!! [note|abstract|info|tip|success|question|warning|failure|bug|example|quote|danger] "Custom title"
- admonition
# 設定腳註
# [^1]: Description
- footnotes
# 允許 nested links,詳見:https://github.com/mkdocs/mkdocs/issues/545
- mdx_truly_sane_lists
extra:
analytics:
provider: google
property: G-P67FD9XP83
alternate:
- name: English
link: /flutter-pos-system/
lang: en
- name: 繁體中文
link: /flutter-pos-system/zh/
lang: zh
plugins:
- git-revision-date
- search
- i18n:
languages:
- locale: en
default: true
name: English
site_name: "POS System - Order & Checkout"
- locale: zh
name: 繁體中文
site_name: "POS 系統 - 點餐結帳"
nav_translations:
Contribute: 幫助
Structure: 架構
Maintenance: 維護
Deployment: 部署流程
Development: 本地端開發
Dependencies: 升版相依套件
Document: 文件
Code of Conduct: 開發公約
License: 使用許可
Privacy Policy: 隱私權規範