//! Utility functions used throughout the CLI renderer.
//!
//! This module provides helpers for input handling, file inspection,
//! and string preprocessing. These are internal-only utilities and
//! not exposed to end users.
//!
//! It includes:
//! - Escape sequence interpretation (for `\\n`, `\\t`, etc.);
//! - File size warnings to prevent oversized SVG output;
//! - Detection of piped vs interactive stdin input.
pub use interpret_escapes;
pub use warn_if_svg_too_large;
pub use stdin_has_data;