Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 517 Bytes

eleven-tables-speak.md

File metadata and controls

19 lines (15 loc) · 517 Bytes
@astrojs/markdoc
patch

Add support for syntax highlighting with Shiki. Apply to your Markdoc config using the extends property:

// markdoc.config.mjs
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import shiki from '@astrojs/markdoc/shiki';

export default defineMarkdocConfig({
  extends: [
    shiki({ /** Shiki config options */ }),
  ],
})

Learn more in the @astrojs/markdoc README.