Files
documentation/node_modules/micromark-extension-mdx-md/index.d.ts
2024-03-22 03:47:51 +05:30

14 lines
462 B
TypeScript

/**
* @typedef {import('micromark-util-types').Extension} Extension
*/
/**
* Create an extension for `micromark` to disable some CommonMark syntax (code
* (indented), autolinks, and HTML (flow and text)) for MDX.
*
* @returns {Extension}
* Extension for `micromark` that can be passed in `extensions` to disable
* some CommonMark syntax for MDX.
*/
export function mdxMd(): Extension
export type Extension = import('micromark-util-types').Extension