use crate::types::{ChordRepresentation, SimpleChord};
pub trait FormatHTML {
fn format_html(
&self,
key: Option<&SimpleChord>,
representation: Option<&ChordRepresentation>,
language: Option<usize>,
scale: Option<f32>,
) -> String;
fn format_html_page(
&self,
key: Option<&SimpleChord>,
representation: Option<&ChordRepresentation>,
language: Option<usize>,
scale: Option<f32>,
) -> (String, String);
}