Skip to content

Commit

Permalink
i18n(ko-KR): update sidebar.mdx (#837)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsparkdev authored Oct 9, 2023
1 parent 4f3389c commit 7d7f5cb
Showing 1 changed file with 46 additions and 2 deletions.
48 changes: 46 additions & 2 deletions docs/src/content/docs/ko/guides/sidebar.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
---
title: 사이드바 탐색
description: Starlight 사이트의 사이드바 탐색 링크를 설정하고 사용자 정의하는 방법을 알아보세요.
sidebar:
badge: New
---

import FileTree from '../../../../components/file-tree.astro';
Expand Down Expand Up @@ -316,6 +314,52 @@ starlight({
]}
/>

## 사용자 정의 HTML 속성

링크에는 사용자 정의 HTML 속성을 추가하기 위한 `attrs` 속성이 포함될 수도 있습니다.

다음 예에서는 `attrs`를 사용하여 링크가 새 탭에서 열리도록 `target="_blank"` 속성을 추가하고 사용자 정의 스타일 속성을 적용하여 링크 레이블을 기울임꼴로 표시합니다.

다음 예에서는 링크가 새 탭에서 열리도록 `target="_blank` 속성을 추가하고, 사용자 정의 `style` 속성을 적용하여 링크 레이블을 기울임꼴로 표시하기 위해 `attrs`를 사용합니다.

```js
starlight({
sidebar: [
{
label: '가이드',
items: [
// 새 탭에서 열리는 Astro 문서에 대한 외부 링크입니다.
{
label: 'Astro 문서',
link: 'https://docs.astro.build/',
attrs: { target: '_blank', style: 'font-style: italic' },
},
],
},
],
});
```

위 구성은 다음 사이드바를 생성합니다.

<SidebarPreview
config={[
{
label: '가이드',
items: [
{
label: 'Astro 문서',
link: 'https://docs.astro.build/',
attrs: {
target: '_blank',
style: 'font-style: italic',
},
},
],
},
]}
/>

## 국제화

링크 또는 그룹의 라벨을 지원되는 각 언어로 번역하기 위해 링크 및 그룹 항목에 `translations` 속성을 사용할 수 있습니다.
Expand Down

0 comments on commit 7d7f5cb

Please sign in to comment.