UNPKG

@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

8 lines (7 loc) 259 B
import type { Root } from "hast"; import type { Plugin as UnifiedPlugin } from "unified"; /** * Plugin to add attachments images in frontmatter */ declare const rehypeAddAttachmentsImages: UnifiedPlugin<[], Root>; export default rehypeAddAttachmentsImages;