mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 05:58:15 +08:00
14 lines
451 B
TypeScript
14 lines
451 B
TypeScript
|
/**
|
||
|
* @import {HtmlExtension} from 'micromark-util-types'
|
||
|
*/
|
||
|
/**
|
||
|
* Create an HTML extension for `micromark` to support GFM task list items when
|
||
|
* serializing to HTML.
|
||
|
*
|
||
|
* @returns {HtmlExtension}
|
||
|
* Extension for `micromark` that can be passed in `htmlExtensions` to
|
||
|
* support GFM task list items when serializing to HTML.
|
||
|
*/
|
||
|
export function gfmTaskListItemHtml(): HtmlExtension;
|
||
|
import type { HtmlExtension } from 'micromark-util-types';
|