-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
115 lines (105 loc) · 2.47 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
# 基本設置
site_name: DaWei
site_url: https://dwhao84.github.io/
site_author: DaWei
site_description: Portfolio website for DaWei
# 主題設置
theme:
name: material
language: zh-Hant
# 樣式設定
logo: assets/logo.png
favicon: assets/square-code.png
# 配色設定
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
# 功能設定
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.footer
- toc.follow
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
# 插件設定
plugins:
- search:
lang:
- en
- zh
- tags
- redirects:
redirect_maps:
index.md: zh-Hant/index.md
# 擴展設定
markdown_extensions:
- tables
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg # 導覽設定
nav:
- Home: index.md
- About:
- 中文: zh-Hant/index.md
- English: en/index.md
- Projects:
- 中文: zh-Hant/專案.md
- English: en/projects.md
- Tech Stack:
- 中文: zh-Hant/技術.md
- English: en/techstack.md
- Experience:
- 中文: zh-Hant/工作經驗.md
- English: en/resume.md
- Contact:
- 中文: zh-Hant/聯絡方式.md
- English: en/contact.md
# 額外設定
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/dwhao84
- icon: fontawesome/brands/medium
link: https://medium.com/@dwsamurai84_dev
- icon: fontawesome/solid/envelope
link: mailto:dwsamurai84@gmail.com
# 版權設定
copyright: Copyright © 2024 DaWei
# CSS 自定義
extra_css:
- assets/extra.css