import { Processor } from "unified"; //#region src/serializers/html/plugins/remark-autolink-literal.d.ts /** * A remark plugin to add support for the autolink literals extension extension from the GitHub * Flavored Markdown (GFM) specification. * * This is an standalone plugin which makes use of both the `mdast-util-gfm-autolink-literal` and * `micromark-extension-gfm-autolink-literal` 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 remarkAutolinkLiteral(this: Processor): void; //#endregion export { remarkAutolinkLiteral }; //# sourceMappingURL=remark-autolink-literal.d.ts.map