//! Library helpers to parse, transform, and render chord-and-lyrics songs.
//!
//! The crate focuses on song formats such as ChordPro, SongBeamer, experimental
//! modern ProPresenter `.pro`, and Ultimate Guitar tabs. It provides matching
//! parsers and renderers where the source format permits them. Feature flags:
//! - `html`: parse and render HTML content.
//! - `bin`: build the `chordlib` CLI (depends on `clap`).
//!
//! See the README for end-to-end examples.
/// Normalization helpers for user-facing text (e.g. Unicode space separators to ASCII).
pub use Error;