diff --git a/.changeset/metal-bugs-drive.md b/.changeset/metal-bugs-drive.md new file mode 100644 index 0000000000000..16b4f6b19272b --- /dev/null +++ b/.changeset/metal-bugs-drive.md @@ -0,0 +1,17 @@ +--- +'@astrojs/markdoc': minor +'astro': patch +--- + +Remove the auto-generated `$entry` variable for Markdoc entries. To access frontmatter as a variable, you can pass `entry.data` as a prop where you render your content: + +```astro +--- +import { getEntry } from 'astro:content'; + +const entry = await getEntry('docs', 'why-markdoc'); +const { Content } = await entry.render(); +--- + + +```