Astro: @astrojs/[email protected] Release

Release date:
June 9, 2026
Previous version:
@astrojs/[email protected] (released June 3, 2026)
Magnitude:
462 Diff Delta
Contributors:
6 total committers
Data confidence:
Commits:

Top Contributors in @astrojs/[email protected]

matthewp
Princesseuh
florian-lefebvre
ematipico
ocavue
astrobot-houston

Directory Browser for @astrojs/[email protected]

All files are compared to previous version, @astrojs/[email protected]. 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',
      },
    });