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 tailwind-rendered-markdown.mdx #10839

Merged
merged 2 commits into from
Jan 31, 2025
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
19 changes: 5 additions & 14 deletions src/content/docs/ko/recipes/tailwind-rendered-markdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro';

Astro 프로젝트는 다음과 같습니다.

- [Astro의 Tailwind 통합](/ko/guides/integrations-guide/tailwind/)이 설치되어 있어야 합니다.
- [Tailwind Vite 플러그인](/ko/guides/styling/#tailwind)이 설치되어 있어야 합니다.
- Astro의 [콘텐츠 컬렉션](/ko/guides/content-collections/)을 사용해야 합니다.

## `@tailwindcss/typography` 설정
Expand All @@ -42,18 +42,9 @@ Astro 프로젝트는 다음과 같습니다.

그런 다음 패키지를 Tailwind 구성 파일에 플러그인으로 추가하세요.

```diff lang="js"
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
theme: {
// ...
},
plugins: [
+ require('@tailwindcss/typography'),
// ...
],
}
```css title="src/styles/global.css" ins={2}
@import 'tailwindcss';
@plugin '@tailwindcss/typography';
```

## 레시피
Expand Down Expand Up @@ -105,4 +96,4 @@ export default {

## 자료

- [Tailwind Typography 문서](https://tailwindcss.com/docs/typography-plugin)
- [Tailwind Typography 문서](https://tailwindcss.com/docs/typography-plugin)