Astro: @astrojs/markdown-satteri@0.3.0 Release

Release date:
June 9, 2026
Previous version:
@astrojs/markdown-satteri@0.3.0-alpha.0 (released June 8, 2026)
Magnitude:
423 Diff Delta
Contributors:
6 total committers
Data confidence:
Commits:

Top Contributors in @astrojs/markdown-satteri@0.3.0

matthewp
florian-lefebvre
Princesseuh
ematipico
ocavue
astrobot-houston

Directory Browser for @astrojs/markdown-satteri@0.3.0

All files are compared to previous version, @astrojs/markdown-satteri@0.3.0-alpha.0. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Minor 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',
      },
    });