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 markdown-content.mdx #7351

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