Music
note
{{note()}};
{{note({ notes: 'flatkey' })}};
Return a note. šµ
{{note()}};
=> 'B'
{{note()}};
=> 'Eā'
Options flatKey - chromatic scale with flat notes (default) sharpKey - chromatic scale with sharp notes flats - just flat notes sharps - just sharp notes naturals - just natural notes all - naturals, sharps and flats
{{note({notes: 'flats' })}};
=> 'A'
{{note({notes: 'sharps' })}};
=> 'FāÆ'
tempo
{{tempo()}};
{{tempo({ min: 60, max: 120 })}};
Return a tempo. šµ
{{tempo()}};
=> 58
{{tempo()}};
=> 281
{{tempo({ max: 80 })}};
=> 45
{{tempo({ min: 120 })}};
=> 172