Skip to content

MDC Extractor

Support extracting classes from MDC (Markdown Components) syntax.

Installation

bash
pnpm add -D @unocss/extractor-mdc
bash
yarn add -D @unocss/extractor-mdc
bash
npm install -D @unocss/extractor-mdc
ts
import { defineConfig } from 'unocss'
import extractorMdc from '@unocss/extractor-mdc'

export default defineConfig({
  extractors: [
    extractorMdc(),
  ],
})

It will apply the extraction on .md .mdc and .markdown files, to extract inline props usage of classes. For example

md
# Title{.text-2xl.font-bold}

Hello [World]{.text-blue-500}

![image](/image.png){.w-32.h-32}

The text-2xl, font-bold, text-blue-500, w-32, h-32 classes will be extracted.

Released under the MIT License.