@mui/internal-docs-infra
Version:
MUI Infra - internal documentation creation tools.
10 lines • 414 B
text/typescript
import type { Plugin } from 'unified';
export interface TransformMarkdownCodeOptions {
/**
* Default language to apply to inline code that doesn't have an explicit `{:lang}` suffix.
* Set to `false` to disable default highlighting for inline code.
* @default 'tsx'
*/
defaultInlineCodeLanguage?: string | false;
}
export declare const transformMarkdownCode: Plugin<[TransformMarkdownCodeOptions?]>;