Skip to content

Commit 1851d5c

Browse files
committedMar 10, 2025·
发布新的内容
1 parent 636b448 commit 1851d5c

File tree

4 files changed

+1458
-1
lines changed

4 files changed

+1458
-1
lines changed
 

‎docs/.vitepress/config.mts

+35-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ export default (defineConfig({
6161
//行号显示
6262
lineNumbers: true,
6363

64+
toc: { level: [2,6] },
65+
6466
// 使用 `!!code` 防止转换
6567
codeTransformers: [
6668
{
@@ -180,6 +182,21 @@ export default (defineConfig({
180182
{ text: 'Jenkins插件管理', link: '/basicContent/plugin-manager' },
181183
],
182184
},
185+
{
186+
//分组标题1
187+
text: '自由风格',
188+
items: [
189+
{ text: '认识自由风格', link: '/freestyle/get-to-know-the-free-style' },
190+
],
191+
},
192+
{
193+
//分组标题1
194+
text: 'pipeline',
195+
items: [
196+
{ text: '认识pipeline', link: '/pipeline/get-to-know-the-pipeline' },
197+
{ text: 'pipeline语法观止', link: '/pipeline/pipeline-syntax-compendium' },
198+
],
199+
},
183200
],
184201
},
185202
{ text: '📝 我的博客', link: 'https://wiki.eryajf.net' },
@@ -205,10 +222,27 @@ export default (defineConfig({
205222
{ text: 'Jenkins插件管理', link: '/basicContent/plugin-manager' },
206223
],
207224
},
225+
{
226+
//分组标题1
227+
text: '自由风格',
228+
collapsed: false,
229+
items: [
230+
{ text: '认识自由风格', link: '/freestyle/get-to-know-the-free-style' },
231+
],
232+
},
233+
{
234+
//分组标题1
235+
text: 'pipeline',
236+
collapsed: false,
237+
items: [
238+
{ text: '认识pipeline', link: '/pipeline/get-to-know-the-pipeline' },
239+
{ text: 'pipeline语法观止', link: '/pipeline/pipeline-syntax-compendium' },
240+
],
241+
},
208242
{
209243
//分组标题3
210244
text: '保留文档',
211-
collapsed: false,
245+
collapsed: true,
212246
items: [
213247
{ text: 'Markdown', link: '/keep/markdown' },
214248
{ text: 'VitePress', link: '/keep/vitepress' },
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# 认识自由风格
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# 认识流水线
2+

‎docs/pipeline/pipeline-syntax-compendium.md

+1,419
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.