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