mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
/**
|
|
* Create an extension for `micromark` to enable directive syntax.
|
|
*
|
|
* @returns {Extension}
|
|
* Extension for `micromark` that can be passed in `extensions`, to
|
|
* enable directive syntax.
|
|
*/
|
|
export function directive(): Extension
|
|
export type Extension = import('micromark-util-types').Extension
|