Urara-Blog/node_modules/.pnpm-store/v3/files/17/9910972820a9cd4d3e74475a6eeccb8dd85a311ce36f0e9b0a9d88e0972bc4f6a08c8ede103058b870e2adccc8fc3b179933d7691d053d5b058885f779705b
2022-08-14 01:14:53 +08:00

17 lines
646 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @param value Markdown to parse (`string` or `Buffer`).
* @param [encoding] Character encoding to understand `value` as when its a `Buffer` (`string`, default: `'utf8'`).
* @param [options] Configuration
*/
export const micromark: ((
value: Value,
encoding: Encoding,
options?: import('micromark-util-types').Options | undefined
) => string) &
((
value: Value,
options?: import('micromark-util-types').Options | undefined
) => string)
export type Options = import('micromark-util-types').Options
export type Value = import('micromark-util-types').Value
export type Encoding = import('micromark-util-types').Encoding