Astro: @astrojs/markdown-satteri@0.3.1-alpha.0 Release

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

55 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored April 22, 2026
Authored June 9, 2026
Authored June 8, 2026
Authored May 19, 2026
Authored June 9, 2026
Authored April 30, 2026
Authored May 19, 2026
Authored June 9, 2026
Authored April 30, 2026
Authored February 16, 2026
Authored April 30, 2026
Authored April 30, 2026
Authored May 9, 2026
Authored April 30, 2026
Authored May 19, 2026
Authored May 19, 2026
Authored May 19, 2026
Authored April 30, 2026
Authored April 30, 2026
Authored May 19, 2026
Authored April 30, 2026
Authored April 30, 2026
Authored April 30, 2026
Authored June 9, 2026

Top Contributors in @astrojs/markdown-satteri@0.3.1-alpha.0

ematipico
astrobot-houston
ljharb
matthewp
ocavue
Princesseuh
ArmandPhilippot
alexanderniebuhr

Directory Browser for @astrojs/markdown-satteri@0.3.1-alpha.0

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

Loading File Browser...

Release Notes Published

@astrojs/markdown-satteri

0.3.0-alpha.0

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

0.3.0

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

0.2.2

Patch Changes

0.2.1

Patch Changes

0.2.0

Minor Changes

  • #16848 f732f3c Thanks @Princesseuh! - Adds @astrojs/markdown-satteri, a Markdown processor based on Sätteri, a fast Markdown pipeline written in Rust.

    Sätteri is much faster than the default Remark-based processor, and supports a wide range of Markdown features out of the box, without requiring additional plugins. In the future, we plan to make this the default Markdown processor in Astro.

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

    Note that this processor currently does not support Prism syntax highlighting, and require using syntaxHighlight: 'shiki' or disabling syntax highlighting altogether for now.

Patch Changes