Astro: @astrojs/markdown-remark@7.1.0 Release

Release date:
March 26, 2026
Previous version:
@astrojs/markdown-remark@7.0.1 (released March 18, 2026)
Magnitude:
7,420 Diff Delta
Contributors:
14 total committers
Data confidence:
Commits:

62 Commits in this Release

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

Authored March 19, 2026
Authored March 25, 2026
Authored March 24, 2026
Authored March 23, 2026
Authored March 25, 2026

Top Contributors in @astrojs/markdown-remark@7.1.0

ematipico
seroperson
renovate-bot
trueberryless
merlinnot
crutchcorn
pierreeurope
kylemclean
oliverlynch
alexanderniebuhr

Directory Browser for @astrojs/markdown-remark@7.1.0

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #15340 10a1a5a Thanks @trueberryless! - Updates createMarkdownProcessor to support advanced SmartyPants options.

    The smartypants property in AstroMarkdownOptions now accepts Smartypants options, allowing fine-grained control over typography transformations (backticks, dashes, ellipses, and quotes).

    import { createMarkdownProcessor } from '@astrojs/markdown-remark';
    
    const processor = await createMarkdownProcessor({
      smartypants: {
        backticks: 'all',
        dashes: 'oldschool',
        ellipses: 'unspaced',
        openingQuotes: { double: 'Β«', single: 'β€Ή' },
        closingQuotes: { double: 'Β»', single: 'β€Ί' },
        quotes: false,
      },
    });
    

    For the up-to-date supported properties, check out the retext-smartypants options.