| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /**
- * Turn markdown into a syntax tree.
- *
- * @overload
- * @param {Value} value
- * @param {Encoding | null | undefined} [encoding]
- * @param {Options | null | undefined} [options]
- * @returns {Root}
- *
- * @overload
- * @param {Value} value
- * @param {Options | null | undefined} [options]
- * @returns {Root}
- *
- * @param {Value} value
- * Markdown to parse.
- * @param {Encoding | Options | null | undefined} [encoding]
- * Character encoding for when `value` is `Buffer`.
- * @param {Options | null | undefined} [options]
- * Configuration.
- * @returns {Root}
- * mdast tree.
- */
- export function fromMarkdown(value: Value, encoding?: Encoding | null | undefined, options?: Options | null | undefined): Root;
- /**
- * Turn markdown into a syntax tree.
- *
- * @overload
- * @param {Value} value
- * @param {Encoding | null | undefined} [encoding]
- * @param {Options | null | undefined} [options]
- * @returns {Root}
- *
- * @overload
- * @param {Value} value
- * @param {Options | null | undefined} [options]
- * @returns {Root}
- *
- * @param {Value} value
- * Markdown to parse.
- * @param {Encoding | Options | null | undefined} [encoding]
- * Character encoding for when `value` is `Buffer`.
- * @param {Options | null | undefined} [options]
- * Configuration.
- * @returns {Root}
- * mdast tree.
- */
- export function fromMarkdown(value: Value, options?: Options | null | undefined): Root;
- import type { Value } from 'micromark-util-types';
- import type { Encoding } from 'micromark-util-types';
- import type { Options } from './types.js';
- import type { Root } from 'mdast';
- //# sourceMappingURL=index.d.ts.map
|