-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
300 lines (294 loc) · 12.4 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
site_name: Dev Insights Tips
site_description: "knowledge and tips on development"
site_author: "7rikazhexde"
site_url: "https://7rikazhexde.github.io/dev-insights-tips"
repo_name: 7rikazhexde/dev-insights-tips
repo_url: https://github.com/7rikazhexde/dev-insights-tips
copyright: "© 2023 7rikazhexde"
theme:
name: material
custom_dir: overrides
palette:
# Light Mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Dark Mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Noto Sans
code: Inconsolata
language: ja
icon:
repo: fontawesome/brands/github
features:
# - navigation.tabs
# - navigation.tabs.sticky
# Enable link setting on section
- navigation.indexes
# Back-to-top button
- navigation.top
# groups in the sidebar
#- navigation.sections
# expand all collapsible subsections
#- navigation.expand
- content.code.copy
- content.code.select
- content.code.annotate
#- content.tabs.link
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/7rikazhexde
- icon: fontawesome/brands/twitter
link: https://twitter.com/tw_7rikazhexde
- icon: fontawesome/solid/blog
link: https://7rikazhexde-techlog.hatenablog.com/
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
analytics:
provider: google
property: G-4D30V35REY
feedback:
title: Was this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1
note: >-
Thank you for your feedback!<br>
Please use the comments(giscus) below to send us your feedback on this page.
#note: >-
# Thanks for your feedback!<br>
# Please use the link below to provide feedback on this page.<br>
# <a href="https://github.com/7rikazhexde/dev-insights-tips/issues/new" target="_blank" rel="noopener">submit github new issue</a>
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thank you for your feedback!<br>
Please use the comments(giscus) below to send me your feedback on this page or<br>
use the link below to provide feedback on this page.<br>
<a href="https://github.com/7rikazhexde/dev-insights-tips/issues/new" target="_blank" rel="noopener">submit github new issue</a>
extra_css:
# Ref: https://squidfunk.github.io/mkdocs-material/customization/#additional-css
# Ref: https://github.com/Shigezo32/MkDocs/
#- https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css
#- stylesheets/custom.css
#- stylesheets/extra.css
nav:
# - Home: index.md
# - Tag: tags.md
# - Development:
# - development/index.md
# - Cloud:
# - development/cloud/index.md
# - AWS:
# - development/cloud/aws/index.md
# - AWS CLI:
# - development/cloud/aws/aws-cli/index.md
# - DynamoDB:
# - development/cloud/aws/dynamodb/index.md
# - DynamoDB Local: development/cloud/aws/dynamodb/dynamodb-local.md
# - Database:
# - development/database/index.md
# - MariaDB: development/database/mariadb/index.md
# - MongoDB:
# - development/database/mongodb/index.md
# - Install: development/database/mongodb/install-mongodb.md
# - MongoDB Compass: development/database/mongodb/mongodb-compass.md
# - Mongosh: development/database/mongodb/mongosh.md
# - PyMongo: development/database/mongodb/pymongo.md
# - DynamoDB: development/database/dynamodb/index.md
# - Embedded:
# - development/embedded/index.md
# - RaspberryPi:
# - development/embedded/raspberrypi/index.md
# - Ubuntu: development/embedded/raspberrypi/raspberrypi-ubuntu.md
# - Programming:
# - development/programming/index.md
# - AppleScript:
# - development/programming/applescript/index.md
# - Example: development/programming/applescript/example.md
# - Python:
# - development/programming/python/index.md
# - Dash/Plotly: development/programming/python/dash-plotly.md
# - mdformat: development/programming/python/mdformat.md
# - PyMySQL: development/programming/python/pymysql.md
# - Tools:
# - development/tools/index.md
# - CI:
# - development/tools/ci/index.md
# - pre-commit: development/tools/ci/pre-commit/index.md
# - post-commit: development/tools/ci/post-commit/index.md
# - Design:
# - development/tools/design/index.md
# - Inkscape: development/tools/design/inkscape/index.md
# - Document:
# - development/tools/document/index.md
# - Markdown: development/tools/document/markdown/index.md
# - MkDocs:
# - development/tools/document/mkdocs/index.md
# - 表示設定: development/tools/document/mkdocs/display-config.md
# - ドキュメント設定: development/tools/document/mkdocs/doc_config.md
# - PKM:
# - development/tools/document/pkm/index.md
# - Obsidian:
# - development/tools/document/pkm/obsidian/index.md
# - Community Plugins:
# - development/tools/document/pkm/obsidian/community_plugins/index.md
# - Auto Template Trigger: development/tools/document/pkm/obsidian/community_plugins/auto_template_trigger.md
# - PlantUML: development/tools/document/pkm/obsidian/community_plugins/plantuml.md
# - WorkFlowy: development/tools/document/pkm/workflowy/index.md
# - Editors:
# - development/tools/editors/index.md
# - Vi: development/tools/editors/vi/index.md
# - VSCode:
# - development/tools/editors/vscode/index.md
# - 拡張機能: development/tools/editors/vscode/extention.md
# - 設定: development/tools/editors/vscode/setting.md
# - Shortcuts: development/tools/shortcuts/index.md
# - Version Control:
# - development/tools/version-control/index.md
# - Git: development/tools/version-control/git/index.md
# For localize
- Home: ja/index.md
- Tag: ja/tags.md
- Development:
- ja/development/index.md
- Cloud:
- ja/development/cloud/index.md
- AWS:
- ja/development/cloud/aws/index.md
- AWS CLI:
- ja/development/cloud/aws/aws-cli/index.md
- DynamoDB:
- ja/development/cloud/aws/dynamodb/index.md
- DynamoDB Local: ja/development/cloud/aws/dynamodb/dynamodb-local.md
- Database:
- ja/development/database/index.md
- MariaDB: ja/development/database/mariadb/index.md
- MongoDB:
- ja/development/database/mongodb/index.md
- Install: ja/development/database/mongodb/install-mongodb.md
- MongoDB Compass: ja/development/database/mongodb/mongodb-compass.md
- Mongosh: ja/development/database/mongodb/mongosh.md
- PyMongo: ja/development/database/mongodb/pymongo.md
- DynamoDB: ja/development/database/dynamodb/index.md
- Embedded:
- ja/development/embedded/index.md
- RaspberryPi:
- ja/development/embedded/raspberrypi/index.md
- Ubuntu: ja/development/embedded/raspberrypi/raspberrypi-ubuntu.md
- Programming:
- ja/development/programming/index.md
- AppleScript:
- ja/development/programming/applescript/index.md
- Example: ja/development/programming/applescript/example.md
- Python:
- ja/development/programming/python/index.md
- Dash/Plotly: ja/development/programming/python/dash-plotly.md
- mdformat: ja/development/programming/python/mdformat.md
- PyMySQL: ja/development/programming/python/pymysql.md
- Tools:
- ja/development/tools/index.md
- Design:
- ja/development/tools/design/index.md
- Inkscape: ja/development/tools/design/inkscape/index.md
- Document:
- ja/development/tools/document/index.md
- Markdown: ja/development/tools/document/markdown/index.md
- MkDocs:
- ja/development/tools/document/mkdocs/index.md
- Display settings: ja/development/tools/document/mkdocs/display-config.md
- Document settings: ja/development/tools/document/mkdocs/doc_config.md
- PKM:
- ja/development/tools/document/pkm/index.md
- Obsidian:
- ja/development/tools/document/pkm/obsidian/index.md
- Community Plugins:
- ja/development/tools/document/pkm/obsidian/community_plugins/index.md
- Auto Template Trigger: ja/development/tools/document/pkm/obsidian/community_plugins/auto_template_trigger.md
- PlantUML: ja/development/tools/document/pkm/obsidian/community_plugins/plantuml.md
- WorkFlowy: ja/development/tools/document/pkm/workflowy/index.md
- Editors:
- ja/development/tools/editors/index.md
- Vi: ja/development/tools/editors/vi/index.md
- VSCode:
- ja/development/tools/editors/vscode/index.md
- Exxtension: ja/development/tools/editors/vscode/extention.md
- Settings: ja/development/tools/editors/vscode/settings.md
- Shortcuts: ja/development/tools/shortcuts/index.md
- Version Control:
- ja/development/tools/version-control/index.md
- Git:
- ja/development/tools/version-control/git/index.md
- Git Hook:
- ja/development/tools/version-control/git/git-hook/index.md
- pre-commit: ja/development/tools/version-control/git/git-hook/index.md
- post-commit: ja/development/tools/version-control/git/git-hook/index.md
plugins:
- search:
# For localize
- i18n:
docs_structure: folder
fallback_to_default: true
languages:
- build: true
default: false
locale: en
name: English
nav_translations:
Home: Home
- build: true
default: true
locale: ja
name: 日本語
reconfigure_material: true
reconfigure_search: true
- glightbox
- tags:
tags_file: tags.md
# For localize
# i18n設定でjaだけ有効にする場合はplugin/i18nをコメントアウトして以下有効にする必要がある
#tags_file: ja/tags.md
markdown_extensions:
- footnotes
- plantuml_markdown:
server: http://www.plantuml.com/plantuml
# For Admonition
- admonition
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
# For Code Blocks
- pymdownx.highlight:
#use_pygments: true
#noclasses: true
#pygments_style: monokai
linenums: true
#- pymdownx.inlinehilite
- pymdownx.superfences
# For Emoji
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
# For Meta Tag(Relate: Twitter Cards/OGP)
- meta