File tree Expand file tree Collapse file tree 9 files changed +20
-20
lines changed Expand file tree Collapse file tree 9 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import type { DefaultTheme } from 'vitepress'
2
2
3
3
export const cleanCodeSidebarItems : DefaultTheme . SidebarItem [ ] = [
4
4
{
5
- text : 'きれいなコードを書くために' ,
5
+ text : 'きれいなコードを書くために* ' ,
6
6
link : '/chapter1/dicts/clean-code/0_index'
7
7
}
8
8
]
Original file line number Diff line number Diff line change 1
1
import type { DefaultTheme } from 'vitepress'
2
2
3
3
export const section1SidebarItems : DefaultTheme . SidebarItem [ ] = [
4
- { text : '環境構築 (windows)' , link : '/chapter1/section1/0_setup-windows' } ,
5
- { text : '環境構築 (macOS)' , link : '/chapter1/section1/1_setup-unix' } ,
4
+ { text : '環境構築 (windows)* ' , link : '/chapter1/section1/0_setup-windows' } ,
5
+ { text : '環境構築 (macOS)* ' , link : '/chapter1/section1/1_setup-unix' } ,
6
6
{
7
- text : 'Rust で Hello World' ,
7
+ text : 'Rust で Hello World* ' ,
8
8
link : '/chapter1/section1/2_hello-world'
9
9
}
10
10
]
Original file line number Diff line number Diff line change @@ -2,19 +2,19 @@ import type { DefaultTheme } from 'vitepress'
2
2
3
3
export const section3SidebarItems : DefaultTheme . SidebarItem [ ] = [
4
4
{
5
- text : 'サーバーアプリケーションを作る' ,
5
+ text : 'サーバーアプリケーションを作る* ' ,
6
6
link : '/chapter1/section3/0_hello-server'
7
7
} ,
8
8
{
9
- text : 'JSONレスポンスを返す' ,
9
+ text : 'JSONレスポンスを返す* ' ,
10
10
link : '/chapter1/section3/1_json-response'
11
11
} ,
12
12
{
13
- text : 'ルーティング' ,
13
+ text : 'ルーティング* ' ,
14
14
link : '/chapter1/section3/2_rooting'
15
15
} ,
16
16
{
17
- text : 'サーバー演習問題' ,
17
+ text : 'サーバー演習問題* ' ,
18
18
link : '/chapter1/section3/3_server-exercise'
19
19
}
20
20
]
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import type { DefaultTheme } from 'vitepress'
2
2
3
3
export const section4SidebarItems : DefaultTheme . SidebarItem [ ] = [
4
4
{
5
- text : 'データベースを扱う準備' ,
5
+ text : 'データベースを扱う準備* ' ,
6
6
link : '/chapter1/section4/0_prepare'
7
7
} ,
8
8
{
@@ -14,11 +14,11 @@ export const section4SidebarItems: DefaultTheme.SidebarItem[] = [
14
14
link : '/chapter1/section4/2_sql_exercise'
15
15
} ,
16
16
{
17
- text : 'Rustでデータベースを扱う' ,
17
+ text : 'Rustでデータベースを扱う* ' ,
18
18
link : '/chapter1/section4/3_rust_and_db'
19
19
} ,
20
20
{
21
- text : 'サーバーからデータベースを扱う' ,
21
+ text : 'サーバーからデータベースを扱う* ' ,
22
22
link : '/chapter1/section4/4_server_and_db'
23
23
}
24
24
]
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ import type { DefaultTheme } from 'vitepress'
7
7
// ]
8
8
9
9
export const section1SidebarItems : DefaultTheme . SidebarItem [ ] = [
10
- { text : 'プロジェクトのセットアップ' , link : '/chapter2/section1/0_setup' } ,
11
- { text : 'アカウント機能の実装' , link : '/chapter2/section1/1_account' } ,
12
- { text : 'セッションの実装' , link : '/chapter2/section1/2_session' } ,
13
- { text : '検証' , link : '/chapter2/section1/3_verify' } ,
10
+ { text : 'プロジェクトのセットアップ* ' , link : '/chapter2/section1/0_setup' } ,
11
+ { text : 'アカウント機能の実装* ' , link : '/chapter2/section1/1_account' } ,
12
+ { text : 'セッションの実装* ' , link : '/chapter2/section1/2_session' } ,
13
+ { text : '検証* ' , link : '/chapter2/section1/3_verify' } ,
14
14
{ text : 'おまけ演習問題' , link : '/chapter2/section1/4_extra' }
15
15
]
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ import type { DefaultTheme } from 'vitepress'
3
3
export const section2SidebarItems : DefaultTheme . SidebarItem [ ] = [
4
4
{ text : 'vue-routerの設定' , link : '/chapter2/section2/0_router-setup' } ,
5
5
{ text : 'プロキシの設定' , link : '/chapter2/section2/1_proxy' } ,
6
- { text : 'サーバーとの通信' , link : '/chapter2/section2/2_fetch' }
6
+ { text : 'サーバーとの通信* ' , link : '/chapter2/section2/2_fetch' }
7
7
]
Original file line number Diff line number Diff line change 1
1
import type { DefaultTheme } from 'vitepress'
2
2
3
3
export const section3SidebarItems : DefaultTheme . SidebarItem [ ] = [
4
- { text : 'テストを書いてみよう' , link : '/chapter2/section3/0_test' } ,
5
- { text : '自動でテストを実行してみよう' , link : '/chapter2/section3/1_ci' }
4
+ { text : 'テストを書いてみよう* ' , link : '/chapter2/section3/0_test' } ,
5
+ { text : '自動でテストを実行してみよう* ' , link : '/chapter2/section3/1_ci' }
6
6
]
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export const section4SidebarItems: DefaultTheme.SidebarItem[] = [
6
6
link : '/chapter2/section4/0_commands'
7
7
} ,
8
8
{
9
- text : 'Dockerイメージを作る' ,
9
+ text : 'Dockerイメージを作る* ' ,
10
10
link : '/chapter2/section4/1_image'
11
11
} ,
12
12
{
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export const webBasicSidebarItems: DefaultTheme.SidebarItem[] = [
6
6
items : [
7
7
{ text : 'はじめに' , link : '/web_basic/0_index' } ,
8
8
{ text : '第1回 | フロントエンド' , link : '/web_basic/1_frontend' } ,
9
- { text : '第2回 | バックエンド' , link : '/web_basic/2_backend' }
9
+ { text : '第2回 | バックエンド* ' , link : '/web_basic/2_backend' }
10
10
]
11
11
}
12
12
]
You can’t perform that action at this time.
0 commit comments