-
Notifications
You must be signed in to change notification settings - Fork 389
/
mkdocs.yml
160 lines (155 loc) · 4.08 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
site_name: ttkbootstrap
repo_url: https://github.com/israel-dryer/ttkbootstrap
repo_name: israel-dryer/ttkbootstrap
theme:
name: material
language: en
features:
- navigation.tracking
- navigation.tabs
- navigation.indexes
icon:
logo: material/view-dashboard
alternate:
- name: English
link: /en/
lang: en
- name: 简体中文
link: /zh/
lang: zh
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append("src")
- i18n:
default_language: en
languages:
en: English
zh: 简体中文
nav_translations:
zh:
Home: 主页
"Getting started": 开始
"Style guide": 样式指南
"API": 应用程序接口
"Themes": 主题
"Gallery": 图库
"Cookbook": 食谱
"Changelog": 更新日志
markdown_extensions:
- admonition
- def_list
- pymdownx.details
- pymdownx.superfences
- pymdownx.keys
- pymdownx.snippets
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/israel-dryer/ttkbootstrap
- icon: fontawesome/brands/twitter
link: https://twitter.com/IDryer
nav:
- Home:
- index.md
- about.md
- 'Changelog': https://github.com/israel-dryer/ttkbootstrap/releases
- license.md
- 'Getting started':
- gettingstarted/installation.md
- gettingstarted/tutorial.md
- gettingstarted/legacy.md
- 'Style guide':
- styleguide/index.md
- styleguide/button.md
- styleguide/checkbutton.md
- styleguide/combobox.md
- styleguide/dateentry.md
- styleguide/datepickerpopup.md
- styleguide/entry.md
- styleguide/floodgauge.md
- styleguide/frame.md
- styleguide/label.md
- styleguide/labelframe.md
- styleguide/menubutton.md
- styleguide/meter.md
- styleguide/notebook.md
- styleguide/panedwindow.md
- styleguide/progressbar.md
- styleguide/radiobutton.md
- styleguide/scale.md
- styleguide/scrollbar.md
- styleguide/separator.md
- styleguide/sizegrip.md
- styleguide/spinbox.md
- styleguide/treeview.md
- styleguide/legacywidgets.md
- API:
- api/index.md
- api/colorutils.md
- 'dialogs module':
- api/dialogs/colorchooser.md
- api/dialogs/colordropper.md
- api/dialogs/datepickerdialog.md
- api/dialogs/dialog.md
- api/dialogs/fontdialog.md
- api/dialogs/messagebox.md
- api/dialogs/messagedialog.md
- api/dialogs/querybox.md
- api/dialogs/querydialog.md
- 'icons module':
- api/icons/emoji.md
- api/icons/icon.md
- api/localization.md
- 'scrolled module':
- api/scrolled/scrolledframe.md
- api/scrolled/scrolledtext.md
- 'style module':
- api/style/bootstyle.md
- api/style/colors.md
- api/style/style.md
- api/style/stylebuildertk.md
- api/style/stylebuilderttk.md
- api/style/themedefinition.md
- 'tableview module':
- api/tableview/tableview.md
- api/tableview/tablecolumn.md
- api/tableview/tablerow.md
- 'toast module': api/toast.md
- 'tooltip module': api/tooltip.md
- 'utility module': api/utility.md
- 'validation module': api/validation.md
- 'widgets module':
- api/widgets/dateentry.md
- api/widgets/floodgauge.md
- api/widgets/meter.md
- 'window module':
- api/window/window.md
- api/window/toplevel.md
- Themes:
- themes/index.md
- themes/light.md
- themes/dark.md
- themes/definitions.md
- themes/themecreator.md
- Gallery:
- gallery/index.md
- gallery/calculator.md
- gallery/collapsingframe.md
- gallery/dataentry.md
- gallery/equalizer.md
- gallery/filebackup.md
- gallery/filesearchengine.md
- gallery/magicmouse.md
- gallery/mediaplayer.md
- gallery/pccleaner.md
- gallery/stopwatch.md
- gallery/textreader.md
- Cookbook:
- cookbook/index.md
- cookbook/gif-animation.md
- cookbook/validate-user-input.md