chordlib 0.15.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
17
mod chord;
mod chord_representation;
mod chord_simple;
mod line;
mod part;
mod section;
mod song;
mod song_flow_item;

pub use chord::{Chord, Kind};
pub use chord_representation::{ChordRepresentation, RootSpellingHint};
pub use chord_simple::SimpleChord;
pub use line::Line;
pub use part::Part;
pub use section::Section;
pub use song::{Song, chord_duration_to_layout_milliclicks};
pub use song_flow_item::SongFlowItem;