mirror of
https://github.com/Gar-b-age/CookLikeHOC.git
synced 2026-07-17 10:06:11 +00:00
Merge pull request #96 from YaoSiQian/main
fix(nav & index.md): 默认进入各菜品的README和包子
This commit is contained in:
@@ -42,7 +42,7 @@ export function generateNavAndSidebar(rootDir: string) {
|
|||||||
|
|
||||||
for (const dir of sections) {
|
for (const dir of sections) {
|
||||||
const abs = path.join(rootDir, dir)
|
const abs = path.join(rootDir, dir)
|
||||||
const files = fs
|
const files = fs
|
||||||
.readdirSync(abs)
|
.readdirSync(abs)
|
||||||
.filter((f) => isMarkdown(path.join(abs, f)))
|
.filter((f) => isMarkdown(path.join(abs, f)))
|
||||||
.sort(sortByPinyinOrName)
|
.sort(sortByPinyinOrName)
|
||||||
@@ -50,9 +50,12 @@ export function generateNavAndSidebar(rootDir: string) {
|
|||||||
// Build sidebar for this section
|
// Build sidebar for this section
|
||||||
const items: SidebarItem[] = files.map((f) => ({
|
const items: SidebarItem[] = files.map((f) => ({
|
||||||
text: titleFromName(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) {
|
if (items.length > 0) {
|
||||||
sidebar[`/${dir}/`] = [
|
sidebar[`/${dir}/`] = [
|
||||||
{
|
{
|
||||||
@@ -60,11 +63,12 @@ export function generateNavAndSidebar(rootDir: string) {
|
|||||||
items,
|
items,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
if (readme) {
|
||||||
// First doc becomes nav link for section
|
nav.push({ text: dir, link: `/${encodeURI(dir)}/${encodeURI(readme)}` })
|
||||||
nav.push({ text: dir, link: items[0].link! })
|
} else {
|
||||||
|
nav.push({ text: dir, link: items[0].link! })
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// Empty section: still show in nav to directory index if exists
|
|
||||||
nav.push({ text: dir, link: `/${encodeURI(dir)}/` })
|
nav.push({ text: dir, link: `/${encodeURI(dir)}/` })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ hero:
|
|||||||
actions:
|
actions:
|
||||||
- theme: brand
|
- theme: brand
|
||||||
text: 开始浏览
|
text: 开始浏览
|
||||||
link: /炒菜/菠萝咕咾肉
|
link: /炒菜/README
|
||||||
- theme: alt
|
- theme: alt
|
||||||
text: GitHub
|
text: GitHub
|
||||||
link: https://github.com/Gar-b-age/CookLikeHOC
|
link: https://github.com/Gar-b-age/CookLikeHOC
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# 奶黄鸡包
|
||||||
|
|
||||||
|
## 配料
|
||||||
|
- 奶黄鸡包(小麦粉、玉米粉、鸡蛋、白砂糖等)(来自郑州千味央厨)
|
||||||
|
|
||||||
|
## 步骤
|
||||||
|
- 蒸柜上汽后,蒸制 8 分钟。
|
||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
# 荠菜鲜肉蒸饺
|
# 荠菜鲜肉蒸饺
|
||||||
|
|
||||||
## 配料
|
## 配料
|
||||||
- 奶黄鸡包(来自郑州千味央厨)
|
- 荠菜鲜肉蒸饺(小麦粉、猪肉、荠菜、盐、鸡精等)(来自郑州千味央厨、山东康喜)
|
||||||
|
|
||||||
## 步骤
|
## 步骤
|
||||||
- 蒸柜上汽后,蒸制 8 分钟。
|
- 蒸柜上汽后,蒸制 10 分钟。
|
||||||
Reference in New Issue
Block a user