Astro: @astrojs/markdown-satteri@0.2.0 Release

Release date:
May 28, 2026
Previous version:
@astrojs/markdown-remark@7.2.0 (released May 28, 2026)
Magnitude:
0 Diff Delta
Contributors:
0 total committers
Data confidence:
Commits:

Top Contributors in @astrojs/markdown-satteri@0.2.0

Could not determine top contributors for this release.

Directory Browser for @astrojs/markdown-satteri@0.2.0

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

Loading File Browser...

Release Notes Published

@astrojs/markdown-satteri

0.2.0

Minor Changes

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