@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
9 lines (8 loc) • 329 B
TypeScript
import type { Root } from "hast";
import type { Plugin as UnifiedPlugin } from "unified";
import type { RehypeAddNoticeOptions } from "./rehype-add-notice.types.js";
/**
* UnifiedPlugin to add a notice to the AST.
*/
declare const rehypeAddNotice: UnifiedPlugin<[RehypeAddNoticeOptions], Root>;
export default rehypeAddNotice;