1 2 3 4 5 6 7 8 9 10 11
//! Graph rendering utilities. //! //! This module provides various output formats for visualizing RefGraph structures: //! - ASCII tree rendering for terminal display //! - GraphML export for external visualization tools mod ascii; mod graphml; pub use ascii::{render_actions_view, render_ascii_tree, render_full_view, render_topic_flow}; pub use graphml::render_graphml;