mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-11 20:04:55 +02:00
13 lines
483 B
TypeScript
13 lines
483 B
TypeScript
/**
|
|
* Create an extension for `micromark` to enable MDX syntax.
|
|
*
|
|
* @param {Options | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {Extension}
|
|
* Extension for `micromark` that can be passed in `extensions` to enable MDX
|
|
* syntax.
|
|
*/
|
|
export function mdxjs(options?: Options | null | undefined): Extension;
|
|
export type Options = import('micromark-extension-mdx-expression').Options;
|
|
export type Extension = import('micromark-util-types').Extension;
|