Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion src/content/docs/ko/guides/cms/craft-cms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ logo: craft-cms
i18nReady: true
stub: true
---

[Craft CMS](https://craftcms.com/)는 접근 가능한 저작 환경을 갖춘 유연한 오픈 소스 CMS입니다. 자체 프런트엔드가 포함되어 있지만 헤드리스 CMS로 사용하여 Astro 프로젝트에 콘텐츠를 제공할 수도 있습니다.

## 공식 리소스
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/ko/guides/cms/payload.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ stub: true
logo: payload
i18nReady: true
---

import { Steps } from '@astrojs/starlight/components';

[PayloadCMS](https://payloadcms.com/)는 Astro 프로젝트에 콘텐츠를 제공하는 데 사용할 수 있는 헤드리스 오픈 소스 콘텐츠 관리 시스템입니다.
Expand Down
6 changes: 4 additions & 2 deletions src/content/docs/ko/guides/integrations-guide/markdoc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ Astro의 `<Image />` 컴포넌트는 Markdoc에서 직접 사용할 수 없습

```astro title="src/components/MarkdocImage.astro"
---
import type { ImageMetadata } from "astro";
import { Image } from "astro:assets";
interface Props {
src: ImageMetadata;
Expand All @@ -429,8 +430,9 @@ Astro의 `<Image />` 컴포넌트는 Markdoc에서 직접 사용할 수 없습

2. `<Image />` 컴포넌트에는 `![]()` 구문을 사용하여 제공할 수 없는 원격 이미지에 대한 `width` 및 `height`가 필요합니다. 원격 이미지를 사용할 때 오류를 방지하려면 원격 URL `src`를 발견했을 때 표준 HTML `<img>` 태그를 렌더링하도록 컴포넌트를 업데이트하세요.

```astro title="src/components/MarkdocImage.astro" ins="| string" del={9} ins={10-12}
```astro title="src/components/MarkdocImage.astro" ins="| string" del={10} ins={11-13}
---
import type { ImageMetadata } from "astro";
import { Image } from "astro:assets";
interface Props {
src: ImageMetadata | string;
Expand Down Expand Up @@ -482,7 +484,7 @@ Markdoc `image` 태그를 사용하면 `![]()` 구문으로는 불가능한 이

```astro title="src/components/MarkdocFigure.astro"
---
// src/components/MarkdocFigure.astro
import type { ImageMetadata } from "astro";
import { Image } from "astro:assets";
interface Props {
src: ImageMetadata | string;
Expand Down