11 lines
481 B
TypeScript
11 lines
481 B
TypeScript
/**
|
|
* Extension for `micromark` that can be passed in `htmlExtensions` to support
|
|
* GFM autolink literals when serializing to HTML.
|
|
*
|
|
* @type {HtmlExtension}
|
|
*/
|
|
export const gfmAutolinkLiteralHtml: HtmlExtension
|
|
export type CompileContext = import('micromark-util-types').CompileContext
|
|
export type Handle = import('micromark-util-types').Handle
|
|
export type HtmlExtension = import('micromark-util-types').HtmlExtension
|
|
export type Token = import('micromark-util-types').Token
|