UNPKG

micromark-extension-mdx-jsx

Version:
13 lines 501 B
/** * 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