mermaid-text 0.9.1

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

pub(crate) mod common;
pub mod flowchart;
pub mod sequence;
pub mod state;

pub use flowchart::parse;