import { Processor } from "unified"; import { Options } from "micromark-extension-gfm-strikethrough"; //#region src/serializers/html/plugins/remark-strikethrough.d.ts /** * A remark plugin to add support for the strikethrough extension from the GitHub Flavored Markdown * (GFM) specification. * * This is an standalone plugin which makes use of both the `mdast-util-gfm-strikethrough` and * `micromark-extension-gfm-strikethrough` 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, tables, tagfilter, and tasklists). * * @param options Configuration options for the plugin. */ declare function remarkStrikethrough(this: Processor, options?: Options): void; //#endregion export { remarkStrikethrough }; //# sourceMappingURL=remark-strikethrough.d.ts.map