Astro: @astrojs/mdx@6.0.3 Release

Release date:
June 9, 2026
Previous version:
@astrojs/mdx@6.0.2 (released June 3, 2026)
Magnitude:
512 Diff Delta
Contributors:
6 total committers
Data confidence:
Commits:

Top Contributors in @astrojs/mdx@6.0.3

matthewp
Princesseuh
florian-lefebvre
ematipico
ocavue
astrobot-houston

Directory Browser for @astrojs/mdx@6.0.3

All files are compared to previous version, @astrojs/mdx@6.0.2. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Patch Changes

  • #16969 4a31f90 Thanks @Princesseuh! - Adds support for Prism syntax highlighting to the SΓ€tteri Markdown and MDX processors. Setting markdown.syntaxHighlight to 'prism' now highlights your code blocks with Prism.

    // astro.config.mjs
    import { satteri } from '@astrojs/markdown-satteri';
    
    export default defineConfig({
      markdown: {
        processor: satteri(),
        syntaxHighlight: 'prism',
      },
    });