Skip to content

Commit

Permalink
i18n(ko-KR): update configuration-reference.mdx (#9192)
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 committed Aug 25, 2024
1 parent 1710bc7 commit f3679f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/content/docs/ko/reference/configuration-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1807,9 +1807,12 @@ Markdown, MDX 또는 Markdoc에서 생성된 항목은 `render()` 함수를 사
```astro title="src/pages/[slug].astro"
---
import { getEntry, render } from 'astro:content';
const post = await getEntry('blog', Astro.params.slug);
const { Content, headings } = await render(entry);
const { Content, headings } = await render(post);
---
<Content />
```

Expand Down

0 comments on commit f3679f4

Please sign in to comment.