-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
178 lines (167 loc) · 4.7 KB
/
mkdocs.yml
File metadata and controls
178 lines (167 loc) · 4.7 KB
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
site_name: 他山团队 Claude Code 研究工作流
site_description: 用 AI 助手重塑学术研究流程,从文献综述到论文发表
site_author: 他山团队 (Tashan)
copyright: Copyright © 2026 他山团队 (Tashan)
# 站点配置
site_url: https://tashangkd.github.io/cc_plugins/
# 仓库配置
repo_url: https://github.com/TashanGKD/cc_plugins
repo_name: TashanGKD/cc_plugins
# 主题配置
theme:
name: material
language: zh
palette:
# 自动切换亮/暗模式
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: cyan
toggle:
icon: material/brightness-7
name: 切换到暗色模式
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: cyan
toggle:
icon: material/brightness-4
name: 切换到亮色模式
features:
# 导航功能
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.prune
# 搜索功能
- search.suggest
- search.highlight
- search.share
# 内容功能
- content.code.copy
- content.tabs.link
- content.tooltips
# 目录功能
- toc.follow
# 其他功能
- announce.dismiss
# 字体配置
font:
text: Plus Jakarta Sans
# 代码字体通过 CSS 变量 --md-code-font-family 在 extra.css 中配置
# 图标配置
icon:
logo: material/book-open-variant
repo: fontawesome/brands/github
previous: fontawesome/solid/arrow-left
next: fontawesome/solid/arrow-right
# 内容宽度 (移除,使用主题默认)
# content:
# width: 900px
# 插件
plugins:
- search:
lang:
- zh
- en
separator: '[\s\-\.]+'
- git-revision-date-localized:
type: datetime
timezone: Asia/Shanghai
locale: zh
enable_creation_date: true
# Markdown 扩展
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
toc_depth: 3
# PyMdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# 其他
- tables
# 额外 CSS
extra_css:
- https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap
- stylesheets/extra.css
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.9/katex.min.css
# 额外 JS
extra_javascript:
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.9/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.9/contrib/auto-render.min.js
# 额外配置
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/TashanGKD/cc_plugins
- icon: fontawesome/solid/envelope
link: mailto:qingyuge@foxmail.com
analytics:
feedback:
title: 这份文档对您有帮助吗?
ratings:
- icon: material/emoticon-happy-outline
name: 有帮助
data: 1
note: 感谢您的反馈!
- icon: material/emoticon-neutral-outline
name: 还可以
data: 2
note: 感谢您的反馈!
- icon: material/emoticon-sad-outline
name: 需要改进
data: 3
note: 感谢您的反馈!我们会继续改进。
# 导航结构
nav:
- 首页: index.md
- 快速开始:
- 教程目录: tutorial/README.md
- Claude Code 环境搭建: tutorial/01-basics/01-getting-started.md
- Claude Code 基础教程: tutorial/01-basics/02-basic-usage.md
- MCP 使用教程: tutorial/01-basics/03-mcp-usage.md
- Skills 使用教程: tutorial/01-basics/04-skills-usage.md
- Agents 使用教程: tutorial/01-basics/05-subagents-usage.md
- 插件文档:
- 插件列表: plugins/index.md
- Scispark: plugins/scispark.md
- Manim Creator: plugins/manim-creator.md
- 开发指南: development/index.md