html.d.ts 263 B

12345678
  1. /**
  2. * HTML extension for micromark (passed in `htmlExtensions`).
  3. *
  4. * @type {HtmlExtension}
  5. */
  6. export const gfmTableHtml: HtmlExtension;
  7. export type HtmlExtension = import('micromark-util-types').HtmlExtension;
  8. export type Align = import('./syntax.js').Align;