confmark 0.2.0

Bidirectional CLI tool for converting Markdown to Confluence markup and Confluence markup back to Markdown.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Confluence Storage Format (XHTML) ⇄ AST.
//!
//! Parser ([`from_confluence`](crate::Document::from_confluence)) and renderer
//! ([`to_confluence`](crate::Document::to_confluence), with per-node
//! `to_confluence` methods). Core
//! CommonMark + GFM (tables, strikethrough, task lists),
//! `<ac:structured-macro>` macros, and unrecognized markup (preserved verbatim
//! as `RawConfluence`) all round-trip.

mod diagram;
mod parse;
mod render;

#[cfg(test)]
mod tests;