mermaid-text 0.28.2

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
12
//! Layout algorithms and the character grid canvas.

pub mod grid;
pub mod layered;
pub(crate) mod router;
pub mod subgraph;
pub mod sugiyama;

pub use grid::Grid;
pub use layered::{LayoutBackend, LayoutConfig, layout};
pub use subgraph::{SubgraphBounds, compute_subgraph_bounds};
pub use sugiyama::sugiyama_layout;