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)}/` }) } } 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 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