From e570f3594a25849201c8ae6c06583496f79cac6c Mon Sep 17 00:00:00 2001 From: Yao Siqian <2229561981@qq.com> Date: Sun, 21 Sep 2025 05:26:24 +0000 Subject: [PATCH 1/3] fix(nav): section.nav_link -> README.md --- .vitepress/navSidebar.ts | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.vitepress/navSidebar.ts b/.vitepress/navSidebar.ts index 5b40a5c..e21f26e 100644 --- a/.vitepress/navSidebar.ts +++ b/.vitepress/navSidebar.ts @@ -42,7 +42,7 @@ export function generateNavAndSidebar(rootDir: string) { for (const dir of sections) { const abs = path.join(rootDir, dir) - const files = fs + const files = fs .readdirSync(abs) .filter((f) => isMarkdown(path.join(abs, f))) .sort(sortByPinyinOrName) @@ -50,9 +50,12 @@ export function generateNavAndSidebar(rootDir: string) { // Build sidebar for this section const items: SidebarItem[] = files.map((f) => ({ text: titleFromName(f), - link: `/${encodeURI(dir)}/${encodeURI(f)}`, + link: `/${encodeURI(dir)}/${encodeURI(f)}`, })) + // Find README.md、readme.md、index.md + const readme = ['README.md', 'readme.md', 'index.md'].find((n) => fs.existsSync(path.join(abs, n))) + if (items.length > 0) { sidebar[`/${dir}/`] = [ { @@ -60,11 +63,12 @@ export function generateNavAndSidebar(rootDir: string) { items, }, ] - - // First doc becomes nav link for section - nav.push({ text: dir, link: items[0].link! }) + if (readme) { + nav.push({ text: dir, link: `/${encodeURI(dir)}/${encodeURI(readme)}` }) + } else { + nav.push({ text: dir, link: items[0].link! }) + } } else { - // Empty section: still show in nav to directory index if exists nav.push({ text: dir, link: `/${encodeURI(dir)}/` }) } } From 4e9c909e5a9ed333b40db3f907c305015e074e05 Mon Sep 17 00:00:00 2001 From: Yao Siqian <2229561981@qq.com> Date: Sun, 21 Sep 2025 05:33:38 +0000 Subject: [PATCH 2/3] fix(index.md) start -> README.md --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index 5754f3f..dd2ba9d 100644 --- a/index.md +++ b/index.md @@ -7,7 +7,7 @@ hero: actions: - theme: brand text: 开始浏览 - link: /炒菜/菠萝咕咾肉 + link: /炒菜/README - theme: alt text: GitHub link: https://github.com/Gar-b-age/CookLikeHOC From a6ce568319d4f95074fa25fa3840e0ee2ebfb82b Mon Sep 17 00:00:00 2001 From: Yao Siqian <2229561981@qq.com> Date: Sun, 21 Sep 2025 17:10:29 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix(=E6=97=A9=E9=A4=90):=20`=E5=A5=B6?= =?UTF-8?q?=E9=BB=84=E9=B8=A1=E5=8C=85`=E4=B8=8E`=E8=8D=A0=E8=8F=9C?= =?UTF-8?q?=E9=B2=9C=E8=82=89=E8=92=B8=E9=A5=BA`=E8=8F=9C=E5=93=81?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 早餐/奶黄鸡包.md | 7 +++++++ 早餐/荠菜鲜肉蒸饺.md | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 早餐/奶黄鸡包.md diff --git a/早餐/奶黄鸡包.md b/早餐/奶黄鸡包.md new file mode 100644 index 0000000..fd6183f --- /dev/null +++ b/早餐/奶黄鸡包.md @@ -0,0 +1,7 @@ +# 奶黄鸡包 + +## 配料 +- 奶黄鸡包(小麦粉、玉米粉、鸡蛋、白砂糖等)(来自郑州千味央厨) + +## 步骤 +- 蒸柜上汽后,蒸制 8 分钟。 \ No newline at end of file diff --git a/早餐/荠菜鲜肉蒸饺.md b/早餐/荠菜鲜肉蒸饺.md index 0142cb0..5c3870b 100644 --- a/早餐/荠菜鲜肉蒸饺.md +++ b/早餐/荠菜鲜肉蒸饺.md @@ -1,7 +1,7 @@ # 荠菜鲜肉蒸饺 ## 配料 -- 奶黄鸡包(来自郑州千味央厨) +- 荠菜鲜肉蒸饺(小麦粉、猪肉、荠菜、盐、鸡精等)(来自郑州千味央厨、山东康喜) ## 步骤 -- 蒸柜上汽后,蒸制 8 分钟。 \ No newline at end of file +- 蒸柜上汽后,蒸制 10 分钟。 \ No newline at end of file