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 frontmatter.md #2566

Merged
merged 5 commits into from
Nov 4, 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
23 changes: 19 additions & 4 deletions docs/src/content/docs/ja/reference/frontmatter.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ hero:
- text: もっと知りたい
link: /getting-started/
icon: right-arrow
variant: primary
- text: GitHubで見る
link: https://github.com/astronaut/my-project
icon: external
variant: minimal
attrs:
rel: me
---
Expand Down Expand Up @@ -163,8 +163,8 @@ interface HeroConfig {
actions?: Array<{
text: string;
link: string;
variant: 'primary' | 'secondary' | 'minimal';
icon: string;
variant?: 'primary' | 'secondary' | 'minimal';
icon?: string;
attrs?: Record<string, string | number | boolean>;
}>;
}
Expand Down Expand Up @@ -264,6 +264,21 @@ pagefind: false
---
```

### `draft`

**type:** `boolean`
**default:** `false`

このページをドラフトとしてマークし、[本番ビルド](https://docs.astro.build/ja/reference/cli-reference/#astro-build)[自動生成されるリンクのグループ](/ja/guides/sidebar/#自動生成されるグループ)から除外するかどうかを設定します。ページをドラフトとしてマークし、開発中にのみ表示するには`true`に設定します。

```md
---
# src/content/docs/example.md
# 本番ビルドからこのページを除外します
draft: true
---
```

### `sidebar`

**type:** [`SidebarConfig`](#sidebarconfig)
Expand Down Expand Up @@ -333,7 +348,7 @@ sidebar:

**type:** <code>string | <a href="/ja/reference/configuration/#badgeconfig">BadgeConfig</a></code>

自動生成されるリンクのグループに表示されたとき、サイドバーのページにバッジを追加します。文字列を使用すると、バッジはデフォルトのアクセントカラーで表示されます。オプションで、`text``variant`フィールドをもつ[`BadgeConfig`オブジェクト](/ja/reference/configuration/#badgeconfig)を渡してバッジをカスタマイズできます。
自動生成されるリンクのグループに表示されたとき、サイドバーのページにバッジを追加します。文字列を使用すると、バッジはデフォルトのアクセントカラーで表示されます。オプションで、`text``variant``class`フィールドをもつ[`BadgeConfig`オブジェクト](/ja/reference/configuration/#badgeconfig)を渡してバッジをカスタマイズできます。

```md
---
Expand Down
Loading