chordlib 0.8.0

Work with chord-and-lyrics songs: parse, transform, and render them to multiple formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Library helpers to parse, transform, and render chord-and-lyrics songs.
//!
//! The crate focuses on common song markup formats such as ChordPro and
//! Ultimate Guitar tabs, while providing renderers for HTML and ChordPro
//! outputs. Feature flags:
//! - `html`: parse and render HTML content.
//! - `bin`: build the `chordlib` CLI (depends on `clap`).
//!
//! See the README for end-to-end examples.

mod error;
pub use error::Error;

pub mod inputs;
pub mod outputs;
pub mod types;