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

10 lines (9 loc) 391 B
import type { Root } from "hast"; import type { Plugin as UnifiedPlugin } from "unified"; /** * UnifiedPlugin to replace task lists in Confluence Storage Format * * @see {@link https://developer.atlassian.com/server/confluence/confluence-storage-format/ | Confluence Storage Format } */ declare const rehypeReplaceTaskList: UnifiedPlugin<[], Root>; export default rehypeReplaceTaskList;