This commit is contained in:
2024-10-04 16:52:58 +08:00
parent 4d1dd01db7
commit da1c38c11c
109 changed files with 1471 additions and 567 deletions

View File

@@ -15,7 +15,7 @@ export default defineConfig({
},
head: [
["link", { rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
["link", { rel: "stylesheet", href: "/style.css" }],
["link", { rel: "stylesheet", href: "/style.css" }],
],
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
@@ -23,9 +23,9 @@ export default defineConfig({
nav: [
{ text: "首页", link: "/" },
{ text: "基础知识", link: "/python/00/index.md" },
{ text: "办公自动化", link: "/oa/index.md" },
{ text: "数据分析", link: "/data-analysis/index.md" },
{ text: "网络爬虫", link: "/crawler/index.md" },
{ text: "计算机科学", link: "/cs/00/index.md" },
{ text: "计算机速成课", link: "/crash-course/00/index.md" },
],
sidebar: {
"/python": [
@@ -38,53 +38,25 @@ export default defineConfig({
{ text: "判题狗", link: "/python/00/dog.md" },
],
},
{
text: "第一天",
items: [{ text: "", link: "" }],
},
{
text: "第二天",
items: [{ text: "", link: "" }],
},
{
text: "第三天",
items: [{ text: "", link: "" }],
},
{
text: "第四天",
items: [{ text: "", link: "" }],
},
{
text: "第五天",
items: [{ text: "", link: "" }],
},
{
text: "第六天",
items: [{ text: "", link: "" }],
},
{
text: "第七天",
items: [{ text: "", link: "" }],
},
],
"/oa": [{}],
"/data-analysis": [{}],
"/crawler": [{}],
"/cs": [
{ text: "简介", link: "/cs/00/index.md" },
{ text: "计算机早期历史", link: "/cs/01/index.md" },
{ text: "电子计算机", link: "/cs/02/index.md" },
{ text: "布尔逻辑和逻辑门", link: "/cs/03/index.md" },
{ text: "二进制", link: "/cs/04/index.md" },
{ text: "算术逻辑单元", link: "/cs/05/index.md" },
{ text: "寄存器和内存", link: "/cs/06/index.md" },
{ text: "中央处理器", link: "/cs/07/index.md" },
{ text: "指令和程序", link: "/cs/08/index.md" },
{ text: "高级 CPU 设计", link: "/cs/09/index.md" },
{ text: "早期的编程方式", link: "/cs/10/index.md" },
{ text: "编程语言发展史", link: "/cs/11/index.md" },
{ text: "编程原理 - 语句和函数", link: "/cs/12/index.md" },
{ text: "算法入门", link: "/cs/13/index.md" },
{ text: "......", link: "/cs/14/index.md" },
"/crash-course": [
{ text: "简介", link: "/crash-course/00/index.md" },
{ text: "计算机早期历史", link: "/crash-course/01/index.md" },
{ text: "电子计算机", link: "/crash-course/02/index.md" },
{ text: "布尔逻辑和逻辑门", link: "/crash-course/03/index.md" },
{ text: "二进制", link: "/crash-course/04/index.md" },
{ text: "算术逻辑单元", link: "/crash-course/05/index.md" },
{ text: "寄存器和内存", link: "/crash-course/06/index.md" },
{ text: "中央处理器", link: "/crash-course/07/index.md" },
{ text: "指令和程序", link: "/crash-course/08/index.md" },
{ text: "高级 CPU 设计", link: "/crash-course/09/index.md" },
{ text: "早期的编程方式", link: "/crash-course/10/index.md" },
{ text: "编程语言发展史", link: "/crash-course/11/index.md" },
{ text: "编程原理 - 语句和函数", link: "/crash-course/12/index.md" },
{ text: "算法入门", link: "/crash-course/13/index.md" },
{ text: "......", link: "/crash-course/14/index.md" },
],
},
outlineTitle: "目录",