mermaid-text 0.3.3

Render Mermaid diagrams as Unicode box-drawing text — no browser, no image protocols, pure Rust
Documentation
1
2
3
4
5
6
7
8
//! Mermaid diagram parsers.
//!
//! Supports `graph`/`flowchart` and `sequenceDiagram` syntax.

pub mod flowchart;
pub mod sequence;

pub use flowchart::parse;