1 2 3 4 5 6 7 8 9 10
//! Mermaid diagram parsers. //! //! Supports `graph`/`flowchart`, `sequenceDiagram`, and `stateDiagram` / //! `stateDiagram-v2` syntax. pub mod flowchart; pub mod sequence; pub mod state; pub use flowchart::parse;