@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
13 lines (12 loc) • 543 B
TypeScript
import type { Root } from "hast";
import type { Plugin as UnifiedPlugin } from "unified";
import type { RehypeReplaceInternalReferences } from "./rehype-replace-internal-references.types.js";
/**
* UnifiedPlugin to replace internal references in Confluence Storage Format
*
* @see {@link https://developer.atlassian.com/server/confluence/confluence-storage-format/ | Confluence Storage Format }
*/
declare const rehypeConfluenceStorage: UnifiedPlugin<[
RehypeReplaceInternalReferences
], Root>;
export default rehypeConfluenceStorage;