site/node_modules/micromark-extension-gfm-table/lib/html.d.ts

12 lines
429 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* Create an HTML extension for `micromark` to support GitHub tables when
* serializing to HTML.
*
* @returns {HtmlExtension}
* Extension for `micromark` that can be passed in `htmlExtensions` to
* support GitHub tables when serializing to HTML.
*/
export function gfmTableHtml(): HtmlExtension
export type HtmlExtension = import('micromark-util-types').HtmlExtension
export type Align = import('./infer.js').Align