ariel-rs 0.4.0

A faithful Rust port of Mermaid JS — headless SVG diagram rendering without a browser
Documentation
1
2
3
4
5
6
7
8
pub mod constants;
pub mod parser;
pub mod renderer;
pub mod templates;

pub fn render(diag: &parser::StateDiagram, theme: crate::theme::Theme) -> String {
    renderer::render(diag, theme)
}