Skip to content

@astrojs/markdoc@0.3.0

Compare
Choose a tag to compare
@astrobot-houston astrobot-houston released this 30 May 20:56
· 5894 commits to main since this release
ba865f5

Minor Changes

  • #7244 bef3a75db Thanks @bholmesdev! - 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:

    ---
    import { getEntry } from 'astro:content';
    
    const entry = await getEntry('docs', 'why-markdoc');
    const { Content } = await entry.render();
    ---
    
    <Content frontmatter={entry.data} />

Patch Changes