import { Processor } from "unified"; //#region src/serializers/html/plugins/remark-table.d.ts /** * A remark plugin to add support for the table extension from the GitHub Flavored Markdown (GFM) * specification. * * This is an standalone plugin which makes use of both the `mdast-util-gfm-table` and * `micromark-extension-gfm-table` packages, and the implementation is inspired by the third-party * `remark-gfm` plugin. * * The reason why we don't use `remark-gfm` directly is because we don't want to support all other * GFM features (footnotes, tagfilter, and tasklists). */ declare function remarkTable(this: Processor): void; //#endregion export { remarkTable }; //# sourceMappingURL=remark-table.d.ts.map