This commit is contained in:
2024-10-09 19:46:19 +08:00
parent 565177038b
commit 5485a1041d
20 changed files with 79 additions and 40 deletions

View File

@@ -22,28 +22,34 @@ export default defineConfig({
externalLinkIcon: true,
nav: [
{ text: "首页", link: "/" },
{ text: "基础知识", link: "/python/00/index.md" },
{ text: "基础知识", link: "/basic/00/index.md" },
{ text: "数据分析", link: "/data-analysis/index.md" },
{ text: "网络爬虫", link: "/crawler/index.md" },
{ text: "计算机速成课", link: "/crash-course/00/index.md" },
],
sidebar: {
"/python": [
"/basic": [
{
text: "使用说明",
items: [
{ text: "本网站", link: "/python/00/index.md" },
{ text: "自测猫", link: "/python/00/code.md" },
{ text: "判题狗", link: "/python/00/oj.md" },
{ text: "练习册", link: "/python/00/play.md" },
{ text: "本网站", link: "/basic/00/index.md" },
{ text: "自测猫", link: "/basic/00/code.md" },
{ text: "判题狗", link: "/basic/00/oj.md" },
{ text: "练习册", link: "/basic/00/play.md" },
],
},
{
text: "编程技巧",
items: [
{ text: "Python 小抄", link: "/python/01/cheatsheet.md" },
{ text: "看懂报错信息", link: "/python/01/error-message.md" },
{ text: "使用 AI", link: "/python/01/chatgpt.md" },
{ text: "Python 小抄", link: "/basic/01/cheatsheet.md" },
{ text: "看懂报错信息", link: "/basic/01/error-message.md" },
{ text: "使用 AI", link: "/basic/01/chatgpt.md" },
],
},
{
text: "无用的冷知识",
items: [
{ text: "中文编程语言介绍", link: "/basic/02/chinese-program-language.md" },
],
},
],