mermaid-text 0.1.0

Render Mermaid diagrams as Unicode box-drawing text — no browser, no image protocols, pure Rust
Documentation
1
2
3
4
5
6
7
//! Mermaid diagram parsers.
//!
//! Currently only flowchart syntax is supported (Phase 1).

pub mod flowchart;

pub use flowchart::parse;