16 lines
697 B
TypeScript
16 lines
697 B
TypeScript
![]() |
/**
|
||
|
* Extension for `micromark` that can be passed in `extensions` to enable GFM
|
||
|
* autolink literal syntax.
|
||
|
*
|
||
|
* @type {Extension}
|
||
|
*/
|
||
|
export const gfmAutolinkLiteral: Extension
|
||
|
export type Code = import('micromark-util-types').Code
|
||
|
export type ConstructRecord = import('micromark-util-types').ConstructRecord
|
||
|
export type Event = import('micromark-util-types').Event
|
||
|
export type Extension = import('micromark-util-types').Extension
|
||
|
export type Previous = import('micromark-util-types').Previous
|
||
|
export type State = import('micromark-util-types').State
|
||
|
export type TokenizeContext = import('micromark-util-types').TokenizeContext
|
||
|
export type Tokenizer = import('micromark-util-types').Tokenizer
|