@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
11 lines (10 loc) • 374 B
TypeScript
import type { Root } from "hast";
import type { Plugin as UnifiedPlugin } from "unified";
import type { RehypeRemoveLinksOptions } from "./rehype-remove-links.types.js";
/**
* UnifiedPlugin to remove links in html
*
* @deprecated Not required anymore
*/
declare const rehypeRemoveLinks: UnifiedPlugin<[RehypeRemoveLinksOptions], Root>;
export default rehypeRemoveLinks;