feat(docs): 添加系统分析师学习笔记模块并更新依赖
- 新增系统分析师笔记目录及初始章节文件 - 在导航栏和笔记配置中添加系统分析师入口 - 添加系统分析师考试概览文档 - 更新 package.json 依赖:添加 @vuepress/plugin-comment 并升级 @waline/client 版本
This commit is contained in:
@@ -16,6 +16,10 @@ export default defineNavbarConfig([
|
||||
text: '英语学习笔记',
|
||||
link: '/subject/english/',
|
||||
},
|
||||
{
|
||||
text: '系统分析师',
|
||||
link: '/subject/certification/',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -62,6 +62,24 @@ const english = defineNoteConfig({
|
||||
}
|
||||
]
|
||||
})
|
||||
const certification = defineNoteConfig({
|
||||
dir: 'subject',
|
||||
link: '/subject/certification/',
|
||||
sidebar: [
|
||||
{ text: "系统分析师简介", link: "/subject/certification/" },
|
||||
{
|
||||
text: "第一篇 基础知识", prefix: "/certification/sys-analyst", items: [
|
||||
{ text: "第一章 绪论", link: "/subject/certification/sys-analyst/" },
|
||||
{ text: "第二章 数学与工程基础", link: "/subject/certification/sys-analyst/math/" }
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "第二篇 关键技术", prefix: "/certification/sys-analyst", items: [
|
||||
{ text: "第十章 系统规划与分析", link: "/subject/certification/sys-analyst/planning/" }
|
||||
],
|
||||
}
|
||||
]
|
||||
})
|
||||
const solidity = defineNoteConfig({
|
||||
dir: 'programming',
|
||||
link: '/programming/solidity/',
|
||||
@@ -178,5 +196,5 @@ const web = defineNoteConfig({
|
||||
export default defineNotesConfig({
|
||||
dir: 'notes',
|
||||
link: '/',
|
||||
notes: [LeetCode, english, solidity, blockchain, linux, docker, cryptography, web],
|
||||
notes: [LeetCode, english, certification, solidity, blockchain, linux, docker, cryptography, web],
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user