Skip to content

Commit

Permalink
i18n(ko-KR): update markdown-content.mdx (#7351)
Browse files Browse the repository at this point in the history
Co-authored-by: Yan <61414485+yanthomasdev@users.noreply.github.com>
  • Loading branch information
jsparkdev and yanthomasdev authored Mar 14, 2024
1 parent 7d60c18 commit a583f02
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/content/docs/ko/guides/markdown-content.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ export default defineConfig({

### 구문 강조

Astro에는 [Shiki](https://shiki.matsu.io/) ([Shikiji](https://github.com/antfu/shikiji)를 통해) 및 [Prism](https://prismjs.com/)에 대한 지원이 내장되어 있습니다. 이는 다음에 대한 구문 강조를 제공합니다.
Astro에는 [Shiki](https://shiki.style/)[Prism](https://prismjs.com/)에 대한 지원이 내장되어 있습니다. 이는 다음에 대한 구문 강조를 제공합니다.

- Markdown 또는 MDX 파일에 사용되는 모든 코드 펜스(\`\`\`).
- [내장 `<Code />` 컴포넌트](/ko/reference/api-reference/#code-)의 콘텐츠 (Shiki 제공).
Expand All @@ -584,17 +584,17 @@ export default defineConfig({
markdown: {
shikiConfig: {
// Shiki에 내장된 테마 중에서 선택하거나 직접 추가하세요.
// https://github.com/shikijs/shiki/blob/main/docs/themes.md
// https://shiki.style/themes
theme: 'dracula',
// 또는 여러 테마를 제공하세요.
// https://shiki.style/guide/dual-themes#light-dark-dual-themes
experimentalThemes: {
themes: {
light: 'github-light',
dark: 'github-dark',
},
// 사용자 정의 언어 추가
// 참고: Shiki에는 .astro를 포함하여 수많은 언어가 내장되어 있습니다!
// https://github.com/shikijs/shiki/blob/main/docs/languages.md
// https://shiki.style/languages
langs: [],
// 가로 스크롤을 방지하려면 word wrap을 활성화하세요.
wrap: true,
Expand All @@ -621,7 +621,7 @@ export default defineConfig({
});
```

또한 테마, 밝은 모드와 어두운 모드 전환 또는 CSS 변수를 통한 스타일 지정에 대해 자세히 알아보려면 [Shiki의 자체 테마 문서](https://github.com/shikijs/shiki/blob/main/docs/themes.md#loading-theme)를 읽어보는 것이 좋습니다.
또한 테마, 밝은 모드와 어두운 모드 전환 또는 CSS 변수를 통한 스타일 지정에 대해 자세히 알아보려면 [Shiki의 자체 테마 문서](https://shiki.style/themes)를 읽어보는 것이 좋습니다.

#### 기본 구문 강조 모드 변경

Expand Down

0 comments on commit a583f02

Please sign in to comment.