micromark-extension-mdx-jsx
Version:
micromark extension to support MDX or MDX.js JSX
13 lines • 501 B
TypeScript
/**
* Create an extension for `micromark` to enable MDX JSX syntax.
*
* @param {Options | null | undefined} [options]
* Configuration (optional).
* @returns {Extension}
* Extension for `micromark` that can be passed in `extensions` to enable MDX
* JSX syntax.
*/
export function mdxJsx(options?: Options | null | undefined): Extension;
import type { Options } from 'micromark-extension-mdx-jsx';
import type { Extension } from 'micromark-util-types';
//# sourceMappingURL=syntax.d.ts.map