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(ko-KR): update getting-started.mdx #1578

Merged
merged 2 commits into from
Mar 2, 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
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
Loading