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 components.mdx #1206

Merged
merged 2 commits into from
Dec 2, 2023
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
12 changes: 10 additions & 2 deletions docs/src/content/docs/ja/guides/components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: StarlightにおけるMDXでのコンポーネントの利用。

```mdx
---
# src/content/docs/index.mdx
# src/content/docs/example.mdx
title: Welcome to my docs
---

Expand All @@ -33,7 +33,7 @@ StarlightはAstro製であるため、[サポート対象のUIフレームワー

Starlightは、Markdownコンテンツにデフォルトのスタイルを適用します。たとえば、要素間にマージンを追加します。これらのスタイルがコンポーネントの見た目と競合する場合は、`not-content`クラスをコンポーネントに設定してスタイルを無効化してください。

```astro
```astro 'class="not-content"'
---
// src/components/Example.astro
---
Expand All @@ -54,6 +54,8 @@ import { Tabs, TabItem } from '@astrojs/starlight/components';
`<Tabs>`と`<TabItem>`コンポーネントを使用して、タブインターフェースを表示できます。各`<TabItem>`は、ユーザーに表示する`label`を必要とします。

```mdx
# src/content/docs/example.mdx

import { Tabs, TabItem } from '@astrojs/starlight/components';

<Tabs>
Expand All @@ -78,6 +80,8 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
`<Card>`は`title`を必須とし、また任意で[Starlightの組み込みアイコンの1つ](#すべてのアイコン)を名前に設定した`icon`属性を含められます。

```mdx
# src/content/docs/example.mdx

import { Card, CardGrid } from '@astrojs/starlight/components';

<Card title="確認しよう">強調したい興味深いコンテンツ。</Card>
Expand Down Expand Up @@ -125,6 +129,8 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
十分なスペースがある場合、`<CardGrid>`により複数の`<LinkCard>`をグループ化して、カードを並べて表示できます。

```mdx
# src/content/docs/example.mdx

import { LinkCard, CardGrid } from '@astrojs/starlight/components';

<LinkCard
Expand Down Expand Up @@ -170,6 +176,8 @@ Starlightは、`<Icon>`コンポーネントを通じてコンテンツ内に表
`<Icon>`は[`name`](#すべてのアイコン)を必須とし、任意で`label`、`size`、`color`属性を含められます。

```mdx
# src/content/docs/example.mdx

import { Icon } from '@astrojs/starlight/components';

<Icon name="star" color="goldenrod" size="2rem" />
Expand Down