Skip to content

Commit

Permalink
Merge branch 'main' into components
Browse files Browse the repository at this point in the history
  • Loading branch information
HiDeoo authored Mar 2, 2024
2 parents 01e45a3 + 5291a90 commit 2ed87c5
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 48 deletions.
3 changes: 2 additions & 1 deletion docs/src/content/docs/ja/guides/i18n.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ Starlightでは、読者が選択した言語でサイト全体を体験でき
"aside.note": "Note",
"aside.tip": "Tip",
"aside.caution": "Caution",
"aside.danger": "Danger"
"aside.danger": "Danger",
"fileTree.directory": "Directory"
}
```

Expand Down
38 changes: 2 additions & 36 deletions docs/src/content/docs/ko/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,43 +85,9 @@ yarn dev

Starlight는 새로운 콘텐츠를 추가하거나 기존 파일을 가져올 준비가 되어 있습니다!

#### 파일 형식
`src/content/docs/` 디렉터리에 Markdown 파일을 생성하여 사이트에 새 페이지를 추가하세요.

Starlight는 별도의 구성 없이 Markdown 및 MDX에서 콘텐츠를 작성을 지원합니다.
실험적인 [Astro Markdoc 통합](https://docs.astro.build/ko/guides/integrations-guide/markdoc/)을 설치하여 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 페이지는 페이지의 외관을 제어하기 위해 사용자가 원하는 대로 변경 가능한 [공통 프론트매터 속성 세트](/ko/reference/frontmatter/)를 공유합니다.

```md
---
title: 안녕하세요!
description: Starlight 기반 사이트의 페이지입니다.
---
```

중요한 것을 잊어버렸다면, Starlight가 알려줄 것입니다.
[“페이지”](/ko/guides/pages/) 가이드에서 MDX 및 Markdoc 파일에 대한 파일 기반 라우팅 및 지원에 대해 자세히 알아보세요.

### 다음 단계

Expand Down
3 changes: 2 additions & 1 deletion docs/src/content/docs/ko/guides/i18n.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ Starlight를 사용하면 번역된 콘텐츠 파일을 호스팅하는 것 외
"aside.note": "Note",
"aside.tip": "Tip",
"aside.caution": "Caution",
"aside.danger": "Danger"
"aside.danger": "Danger",
"fileTree.directory": "Directory"
}
```

Expand Down
35 changes: 25 additions & 10 deletions docs/src/content/docs/ko/resources/plugins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,26 @@ Starlight 팀이 지원하는 공식 플러그인과 Starlight 사용자가 관
title="starlight-typedoc"
description="TypeDoc을 사용하여 TypeScript로 Starlight 페이지를 생성하세요."
/>
<LinkCard
href="https://github.com/HiDeoo/starlight-blog"
title="starlight-blog"
description="문서 사이트에 블로그를 추가하세요."
/>
<LinkCard
href="https://github.com/HiDeoo/starlight-openapi"
title="starlight-openapi"
description="OpenAPI/Swagger 사양에서 문서 페이지를 만드세요."
/>
<LinkCard
href="https://github.com/HiDeoo/starlight-obsidian"
title="starlight-obsidian"
description="Starlight 사이트에 Obsidian Vault를 게시하세요."
/>
<LinkCard
href="https://astro-ghostcms.xyz/intro/starlight/install/"
title="starlight-ghostcms"
description="Starlight 문서와 함께 GhostCMS 블로그 게시물을 추가하세요."
/>
</CardGrid>

## 커뮤니티 도구 및 통합
Expand All @@ -52,16 +72,6 @@ import { CardGrid, LinkCard } from '@astrojs/starlight/components';
title="FeelBack"
description="문서 페이지에 사용자 피드백 시스템을 추가하세요."
/>
<LinkCard
href="https://github.com/HiDeoo/starlight-blog"
title="starlight-blog"
description="문서 사이트에 블로그를 추가하세요."
/>
<LinkCard
href="https://github.com/HiDeoo/starlight-openapi"
title="starlight-openapi"
description="OpenAPI/Swagger 사양에서 문서 페이지를 만드세요."
/>
<LinkCard
href="https://github.com/val-town/notion-to-astro"
title="notion-to-astro"
Expand All @@ -72,4 +82,9 @@ import { CardGrid, LinkCard } from '@astrojs/starlight/components';
title="astro-live-code"
description="MDX 코드 블록을 대화형 컴포넌트로 렌더링하세요"
/>
<LinkCard
href="https://github.com/HiDeoo/starlight-i18n"
title="starlight-i18n"
description="Starlight 페이지를 번역하는 데 도움이 되는 Visual Studio Code 확장입니다."
/>
</CardGrid>

0 comments on commit 2ed87c5

Please sign in to comment.