no message

Former-commit-id: 0ad98444a977401a075d2bf10c03888791e14a38 [formerly 0ad98444a977401a075d2bf10c03888791e14a38 [formerly 0ad98444a977401a075d2bf10c03888791e14a38 [formerly 0ad98444a977401a075d2bf10c03888791e14a38 [formerly 46736274a7a3203068ed5de797e96c837c599745 [formerly 551cb795c1ed79616eecd54b7d30f98f253aef5a]]]]]
Former-commit-id: 8863aabbe1c7cfd73d26fb0c58525b76cf962071
Former-commit-id: e525436863a1b69aef86293c0841fd6327b3a91e
Former-commit-id: 9d4262e7f553119c0eba743cb309694c1ff43b6d [formerly e7995754fc4ae75d4fef224954954368f9ca721e]
Former-commit-id: 77873de2018306e2b126554707d22276ac8c412d
Former-commit-id: b734fc2f1906ca782a53ffa13fccf529d35c3cf4
Former-commit-id: d86912b89c3921defbedf05d865694750aa7b75e
Former-commit-id: 9f0d0d64f79383df9a2e872a85e9e86a66629875
Former-commit-id: f2b9dd93162d887027e79e982dc5a24eed2782e9
This commit is contained in:
liyang
2018-08-19 13:27:34 +08:00
parent a15942eace
commit 3f893dd38f
3 changed files with 15 additions and 3 deletions

View File

@@ -72,10 +72,10 @@ module.exports = {
{ text: 'D2 Ribbons', link: '/zh/ecosystem-d2-ribbons/' }
]
},
{ text: '文章', link: '/zh/article/' },
{
text: '其它',
items: [
{ text: '文章归档', link: '/zh/article/' },
{ text: '更新日志', link: '/zh/change-log/' },
{ text: '参与者名单', link: '/zh/collaborator/' },
{
@@ -102,7 +102,7 @@ module.exports = {
'/zh/learn-guide/': sideBarLearnGuide(),
'/zh/sys-components/': sideBarSysComponents(),
'/zh/sys-plugins/': sideBarSysPlugins(),
'/zh/article/': sideBarArticle('版本发布')
'/zh/article/': sideBarArticle('版本发布', 'Cookbook')
}
}
}
@@ -153,8 +153,16 @@ function sideBarSysPlugins () {
]
}
function sideBarArticle (titleUpdate) {
function sideBarArticle (titleUpdate, titleCookbook) {
return [
{
title: titleCookbook,
collapsable: false,
children: [
'cookbook/what-is-cookbook',
'cookbook/combinable-questionnaire'
]
},
{
title: titleUpdate,
collapsable: false,

View File

@@ -0,0 +1 @@
7016ea14567961c24eb1fdee492e0c996099f752

View File

@@ -0,0 +1,3 @@
# 什么是 Cookbook
计算机领域的 Cookbook 指的是实用经典案例的意思,是对一些普遍性问题的解决方案的总结和整理。