-
-
Notifications
You must be signed in to change notification settings - Fork 570
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i18n(ja): Add pages.mdx #1524
Merged
+142
−0
Merged
i18n(ja): Add pages.mdx #1524
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
--- | ||
title: ページ | ||
description: Starligtでドキュメントサイトのページを作成し管理する方法を学びます。 | ||
sidebar: | ||
order: 1 | ||
--- | ||
|
||
Starlightは、Markdownのフロントマターにより提供される柔軟なオプションを使用して、コンテンツに基づいてサイトのHTMLページを生成します。さらにStarlightプロジェクトは、[Astroの強力なページ生成ツール](https://docs.astro.build/ja/basics/astro-pages/)に完全にアクセスできます。このガイドでは、Starlightのページ生成の仕組みについて説明します。 | ||
|
||
## コンテンツページ | ||
|
||
### ファイルフォーマット | ||
|
||
Starlightは、設定なしでMarkdownとMDXによってコンテンツを作成できます。Markdocのサポートを追加するには、実験的な[AstroのMarkdocインテグレーション](https://docs.astro.build/ja/guides/integrations-guide/markdoc/)をインストールします。 | ||
|
||
### ページの追加 | ||
|
||
`.md`または`.mdx`ファイルを`src/content/docs/`に作成することで、サイトに新しいページを追加できます。サブフォルダを使用してファイルを整理し、複数のパスセグメントを作成できます。 | ||
|
||
たとえば次のファイル構造は、`example.com/hello-world`と`example.com/reference/faq`にページを生成します。 | ||
|
||
import FileTree from '~/components/file-tree.astro'; | ||
|
||
<FileTree> | ||
|
||
- src/ | ||
- content/ | ||
- docs/ | ||
- hello-world.md | ||
- reference/ | ||
- faq.md | ||
|
||
</FileTree> | ||
|
||
### 型安全なフロントマター | ||
|
||
すべてのStarlightページは、ページの表示方法を制御するためのカスタマイズ可能な[共通のフロントマタープロパティ](/ja/reference/frontmatter/)を共有しています。 | ||
|
||
```md | ||
--- | ||
title: Hello, World! | ||
description: これは私のStarlight製サイトのページです | ||
--- | ||
``` | ||
|
||
何か重要なことを忘れてしまっていても、Starlightがあなたに教えてくれるでしょう。 | ||
|
||
## カスタムページ | ||
|
||
発展的なユースケースとしては、`src/pages/`ディレクトリを作成しておこなうカスタムページの追加があります。`src/pages/`ディレクトリは[Astroのファイルベースルーティング](https://docs.astro.build/ja/basics/astro-pages/#ファイルベースルーティング)を使用しており、他のページフォーマットに加えて`.astro`ファイルをサポートしています。これは、完全にカスタムのレイアウトでページを作成したり、異なるデータソースからページを生成する必要がある場合に役立ちます。 | ||
|
||
たとえば以下のプロジェクトは、`src/content/docs/`のMarkdownコンテンツと、`src/pages/`のAstroとHTMLルートを混在させています。 | ||
|
||
<FileTree> | ||
|
||
- src/ | ||
- content/ | ||
- docs/ | ||
- hello-world.md | ||
- pages/ | ||
- custom.astro | ||
- archived.html | ||
|
||
</FileTree> | ||
|
||
詳しくは[Astroドキュメントの「ページ」ガイド](https://docs.astro.build/ja/basics/astro-pages/)を参照してください。 | ||
|
||
### カスタムページでStarlightのデザインを使用する | ||
|
||
カスタムページでStarlightのデザインを使用するには、ページコンテンツを`<StarlightPage />`コンポーネントでラップします。これは、コンテンツを動的に生成したいものの、Starlightのデザインも使用したいような場合に役立ちます。 | ||
|
||
```astro | ||
--- | ||
// src/pages/custom-page/example.astro | ||
import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro'; | ||
import CustomComponent from './CustomComponent.astro'; | ||
--- | ||
|
||
<StarlightPage frontmatter={{ title: '私のカスタムページ' }}> | ||
<p>これはカスタムコンポーネントを用いたカスタムページです:</p> | ||
<CustomComponent /> | ||
</StarlightPage> | ||
``` | ||
|
||
#### Props | ||
|
||
`<StarlightPage />`コンポーネントは以下のpropsを受け付けます。 | ||
|
||
##### `frontmatter`(必須) | ||
|
||
**type:** `StarlightPageFrontmatter` | ||
|
||
ページの[フロントマタープロパティ](/ja/reference/frontmatter/)を設定します。これは、Markdownページのフロントマターと同様です。[`title`](/ja/reference/frontmatter/#title必須)プロパティは必須ですが、その他のプロパティは任意です。 | ||
|
||
以下のプロパティはMarkdownのフロントマターと異なります。 | ||
|
||
- [`slug`](/ja/reference/frontmatter/#slug)プロパティはサポートされておらず、カスタムページのURLに基づいて自動的に設定されます。 | ||
- [`editUrl`](/ja/reference/frontmatter/#editurl)オプションは、編集リンクを表示するためのURLが必要です。 | ||
- [`sidebar`](/ja/reference/frontmatter/#sidebar)プロパティはサポートされていません。Markdownのフロントマターでは、このオプションは[自動生成されるリンクグループ](/ja/reference/configuration/#sidebar)のカスタマイズを可能にしますが、`<StarlightPage />`コンポーネントを使用するページには適用されません。 | ||
|
||
{/* ##### `sidebar` */} | ||
|
||
{/* **type:** `SidebarEntry[] | undefined` */} | ||
{/* **default:** the sidebar generated based on the [global `sidebar` config](/reference/configuration/#sidebar) */} | ||
|
||
{/* Provide a custom site navigation sidebar for this page. */} | ||
{/* If not set, the page will use the default global sidebar. */} | ||
|
||
##### `hasSidebar` | ||
|
||
**type:** `boolean` | ||
**default:** [`frontmatter.template`](/ja/reference/frontmatter/#template)が`'splash'`の場合は`false`、それ以外の場合は`true` | ||
|
||
ページにサイドバーを表示するかどうかを制御します。 | ||
|
||
##### `headings` | ||
|
||
**type:** `{ depth: number; slug: string; text: string }[]` | ||
**default:** `[]` | ||
|
||
ページのすべての見出しの配列を指定します。指定された場合、Starlightはこれらの見出しからページの目次を生成します。 | ||
|
||
##### `dir` | ||
|
||
**type:** `'ltr' | 'rtl'` | ||
**default:** 現在のロケールの記述方向 | ||
|
||
ページのコンテンツを記述する方向を設定します。 | ||
|
||
##### `lang` | ||
|
||
**type:** `string` | ||
**default:** 現在のロケールの言語 | ||
|
||
`en`や`zh-CN`、`pt-BR`など、ページのBCP-47言語タグを設定します。 | ||
|
||
##### `isFallback` | ||
|
||
**type:** `boolean` | ||
**default:** `false` | ||
|
||
現在の言語に対する翻訳がない結果、ページが[フォールバックコンテンツ](/ja/guides/i18n/#フォールバックコンテンツ)を使用しているかどうかを示します。 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed this was originally translated in the getting started guide. Do you think this makes sense or it's better to keep it as-is?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for spotting this!! I think it's better to translate the title.