Skip to content

Commit

Permalink
i18n(ko-KR): update frontmatter.md (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsparkdev authored Nov 24, 2023
1 parent 537cdf5 commit eb81bc9
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion docs/src/content/docs/ko/reference/frontmatter.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ description: Starlight가 지원하는 기본 프론트매터 필드에 대한

프론트매터의 값을 설정하여 Starlight에서 개별 Markdown 및 MDX 페이지를 변경할 수 있습니다. 예를 들어 일반 페이지에서는 `title``description` 필드를 설정할 수 있습니다.

```md
```md {3-4}
---
# src/content/docs/example.md
title: 이 프로젝트에 대하여
description: 내가 진행 중인 프로젝트에 대해 자세히 알아보세요.
---
Expand Down Expand Up @@ -42,6 +43,7 @@ description: 내가 진행 중인 프로젝트에 대해 자세히 알아보세

```md
---
# src/content/docs/example.md
title: 회사 소개
head:
# 사용자 정의 <title> 태그 사용
Expand All @@ -59,6 +61,7 @@ head:

```md
---
# src/content/docs/example.md
title: 목차에 H2만 있는 페이지
tableOfContents:
minHeadingLevel: 2
Expand All @@ -68,6 +71,7 @@ tableOfContents:

```md
---
# src/content/docs/example.md
title: 목차가 없는 페이지
tableOfContents: false
---
Expand All @@ -90,6 +94,7 @@ tableOfContents: false

```md
---
# src/content/docs/example.md
title: 나의 홈페이지
template: splash
hero:
Expand All @@ -113,6 +118,7 @@ hero:

```md
---
# src/content/docs/example.md
hero:
image:
alt: 반짝이는 밝은 색상의 로고
Expand Down Expand Up @@ -167,6 +173,7 @@ interface HeroConfig {

```md
---
# src/content/docs/example.md
title: 배너가 포함된 페이지
banner:
content: |
Expand All @@ -183,6 +190,7 @@ banner:

```md
---
# src/content/docs/example.md
title: 수정된 최종 업데이트 날짜가 포함된 페이지
lastUpdated: 2022-08-09
---
Expand All @@ -196,20 +204,23 @@ lastUpdated: 2022-08-09

```md
---
# src/content/docs/example.md
# 이전 페이지 링크 숨기기
prev: false
---
```

```md
---
# src/content/docs/example.md
# 이전 페이지 링크의 텍스트 변경
prev: 튜토리얼 계속하기
---
```

```md
---
# src/content/docs/example.md
# 이전 페이지 링크와 텍스트 모두 변경
prev:
link: /unrelated-page/
Expand All @@ -225,6 +236,7 @@ prev:

```md
---
# src/content/docs/example.md
# 다음 페이지 링크 숨기기
next: false
---
Expand All @@ -239,6 +251,7 @@ next: false

```md
---
# src/content/docs/example.md
# 검색 색인에서 이 페이지 숨기기
pagefind: false
---
Expand Down Expand Up @@ -271,6 +284,7 @@ interface SidebarConfig {

```md
---
# src/content/docs/example.md
title: 이 프로젝트에 대하여
sidebar:
label: 소개
Expand All @@ -285,6 +299,7 @@ sidebar:

```md
---
# src/content/docs/example.md
title: 첫 번째로 표시될 페이지
sidebar:
order: 1
Expand All @@ -300,6 +315,7 @@ sidebar:

```md
---
# src/content/docs/example.md
title: 자동 생성된 사이드바에서 숨길 페이지
sidebar:
hidden: true
Expand All @@ -314,6 +330,7 @@ sidebar:

```md
---
# src/content/docs/example.md
title: 배지를 사용하는 페이지
sidebar:
# 사이트의 강조 색상과 일치하는 기본 변형을 사용합니다.
Expand All @@ -323,6 +340,7 @@ sidebar:

```md
---
# src/content/docs/example.md
title: 배지를 사용하는 페이지
sidebar:
badge:
Expand All @@ -339,6 +357,7 @@ sidebar:

```md
---
# src/content/docs/example.md
title: 새 탭에서 열리는 페이지
sidebar:
# 새 탭에서 페이지를 엽니다.
Expand Down

0 comments on commit eb81bc9

Please sign in to comment.