- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
13 lines
406 B
TypeScript
13 lines
406 B
TypeScript
export function micromark(
|
|
value: Value,
|
|
encoding: Encoding | null | undefined,
|
|
options?: Options | null | undefined
|
|
): string
|
|
export function micromark(
|
|
value: Value,
|
|
options?: Options | null | undefined
|
|
): string
|
|
export type Encoding = import('micromark-util-types').Encoding
|
|
export type Options = import('micromark-util-types').Options
|
|
export type Value = import('micromark-util-types').Value
|