Skip to content
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): Update getting-started.mdx #1507

Merged
merged 2 commits into from
Feb 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 2 additions & 34 deletions docs/src/content/docs/ja/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -79,41 +79,9 @@ yarn dev

Starlightに新しいコンテンツを追加したり、既存のファイルを追加したりする準備ができました!

#### ファイルフォーマット
`src/content/docs/`ディレクトリにMarkdownファイルを作成することで、サイトに新しいページを追加できます。

Starlightでは、設定なしでMarkdownとMDXを用いてコンテンツを作成できます。Markdocをサポートするには、実験的な[Astro Markdocインテグレーション](https://docs.astro.build/ja/guides/integrations-guide/markdoc/)をインストールします。

#### ページの追加

`src/content/docs/`に`.md`または`.mdx`ファイルを作成して、サイトに新しいページを追加できます。サブフォルダを追加してファイルを整理したり、複数のパスセグメントを作成することもできます。

たとえば、以下のファイル構造は、`example.com/hello-world`と`example.com/guides/faq`にページを生成します。

import FileTree from '~/components/file-tree.astro';

<FileTree>

- src/
- content/
- docs/
- guides/
- faq.md
- hello-world.md

</FileTree>

#### 型安全なフロントマター

Starlightのページは、ページの表示方法を制御するための、カスタマイズ可能な[共通のフロントマタープロパティ](/ja/reference/frontmatter/)を認識します。

```md
---
title: こんにちは、世界!
description: これはStarlightで作成されたサイトのページです
---
```

何か重要なことを忘れてしまっていても、Starlightが教えてくれるはずです。
ファイルベースのルーティングや、MDXとMarkdocファイルのサポートについて、詳しくは[「ページ」](/ja/guides/pages/)ガイドを参照してください。

### 次のステップ

Expand Down
Loading