diff --git a/AGENTS.md b/AGENTS.md index 2bcd19b..c8ff352 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -32,7 +32,7 @@ - `src/layouts/`: MDXファイルに適用される共通のページレイアウト (`MarkdownLayout.astro`など) を定義しています。 - `src/styles/`: グローバルなCSSファイルが格納されています。 - `public/sample/`: 記事内で使用するコードサンプル(HTML, JSファイルなど)が格納されています。 -- `src/playground/`: 読者が演習を行うためのファイルが置かれています。 +- `public/playground/`: 読者が演習を行うためのファイルが置かれています。 - `public/`: 画像や `robots.txt` などの静的アセットが格納されています。 ## 4. コンテンツ作成の指針 diff --git a/src/pages/html/010-my-first-html.mdx b/src/pages/html/010-my-first-html.mdx index 71c1af4..ab4b94c 100644 --- a/src/pages/html/010-my-first-html.mdx +++ b/src/pages/html/010-my-first-html.mdx @@ -15,7 +15,7 @@ 以下の場所にファイルを作成し、中身を自由に編集してみましょう。 ルールは特にありません。 -`src/playground/html/first.html` +`public/playground/html/first.html` 例として、こんな感じで書いてみました。 @@ -29,7 +29,7 @@ ... -`src/playground/html/first.html` は書けましたか? +`public/playground/html/first.html` は書けましたか? 書けたらファイルをダブルクリックして、ブラウザで開いてみましょう。 例として用意したファイルの結果は、こんな感じになりました。 diff --git a/src/pages/html/090-work.mdx b/src/pages/html/090-work.mdx index 9e27505..bf27146 100644 --- a/src/pages/html/090-work.mdx +++ b/src/pages/html/090-work.mdx @@ -19,7 +19,7 @@ ## 演習1: 自己紹介カードを作ろう -`src/playground/html/`フォルダに`profile-card.html`を作成して、自分の自己紹介カードを作成してください。 +`public/playground/html/`フォルダに`profile-card.html`を作成して、自分の自己紹介カードを作成してください。 ### 要件 @@ -55,7 +55,7 @@ ## 演習2: メッセージボックスを作ろう -`src/playground/html/`フォルダに`message-box.html`を作成して、3種類のメッセージボックスを作成してください。 +`public/playground/html/`フォルダに`message-box.html`を作成して、3種類のメッセージボックスを作成してください。 ### 要件 @@ -85,7 +85,7 @@ ## 演習3: ナビゲーションメニューを作ろう -`src/playground/html/`フォルダに`navigation.html`を作成して、シンプルなナビゲーションメニューを作成してください。 +`public/playground/html/`フォルダに`navigation.html`を作成して、シンプルなナビゲーションメニューを作成してください。 ### 要件 diff --git a/src/pages/js/090-work.mdx b/src/pages/js/090-work.mdx index 3df948e..2ced64d 100644 --- a/src/pages/js/090-work.mdx +++ b/src/pages/js/090-work.mdx @@ -24,7 +24,7 @@ ## 演習1: 年齢判定プログラムを作ろう -`src/playground/js/`フォルダに`age-checker.html`を作成して、年齢によってメッセージを表示するプログラムを作成してください。 +`public/playground/js/`フォルダに`age-checker.html`を作成して、年齢によってメッセージを表示するプログラムを作成してください。 ### 要件 @@ -61,7 +61,7 @@ ## 演習2: 商品の合計金額を計算しよう -`src/playground/js/`フォルダに`price-calculator.html`を作成して、複数の商品の合計金額を計算するプログラムを作成してください。 +`public/playground/js/`フォルダに`price-calculator.html`を作成して、複数の商品の合計金額を計算するプログラムを作成してください。 ### 要件 @@ -97,7 +97,7 @@ ## 演習3: カウンターアプリを作ろう -`src/playground/js/`フォルダに`counter.html`を作成して、数字を増減できるカウンターアプリを作成してください。 +`public/playground/js/`フォルダに`counter.html`を作成して、数字を増減できるカウンターアプリを作成してください。 ### 要件 @@ -131,7 +131,7 @@ ## 演習4: テキストの色を変えるアプリを作ろう -`src/playground/js/`フォルダに`color-changer.html`を作成して、ボタンをクリックするとテキストの色が変わるプログラムを作成してください。 +`public/playground/js/`フォルダに`color-changer.html`を作成して、ボタンをクリックするとテキストの色が変わるプログラムを作成してください。 ### 要件