//! Flowchart diagram implementation.
//!
//! Flowcharts are node-edge graphs rendered using hierarchical (Sugiyama) layout.
//! This is the original and most feature-complete diagram type in mmdflux.
pub
pub use compile_to_graph;
pub use FlowchartInstance;
/// Detect if input is a flowchart diagram.
///
/// Delegates to the centralized parser detection to ensure consistent behavior:
/// - Skips `%%` comment lines
/// - Case-insensitive keyword matching
/// - Exact first-word matching (not prefix)