@telefonica/markdown-confluence-sync
Version:
Creates/updates/deletes Confluence pages based on markdown files in a directory. Supports Mermaid diagrams and per-page configuration using frontmatter metadata. Works great with Docusaurus
12 lines (11 loc) • 531 B
TypeScript
import type { Root } from "mdast";
import type { Plugin as UnifiedPlugin } from "unified";
/**
* UnifiedPlugin to remove footnotes from the AST.
*
* @see {@link https://github.com/syntax-tree/mdast#footnotes | Footnotes}
* @see {@link https://github.com/syntax-tree/mdast#footnotedefinition | GFM Footnote Definition}
* @see {@link https://github.com/syntax-tree/mdast#footnotereference | GFM Footnote Reference}
*/
declare const remarkRemoveFootnotes: UnifiedPlugin<Array<void>, Root>;
export default remarkRemoveFootnotes;