revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Mermaid-style diagram rendering in ASCII
//!
//! Renders flowcharts, sequence diagrams, and other diagrams
//! using ASCII/Unicode art.

mod core;
mod helpers;
mod render;
mod types;

pub use core::Diagram;
pub use helpers::{diagram, edge, flowchart, node};
pub use types::{ArrowStyle, DiagramEdge, DiagramNode, DiagramType, NodeShape};

crate::impl_styled_view!(Diagram);
crate::impl_props_builders!(Diagram);