Christophe Noël
Christophe Noël
https://github.com/infojunkie/ireal-musicxml/blob/v1.0.1/src/musicxml.js#L824-L914
https://github.com/tonaljs/tonal/blob/master/packages/chord-type/data.ts
Inspiration: https://github.com/felixroos/jazzband/blob/master/notes/voicings.md
https://en.wikipedia.org/wiki/Nashville_Number_System https://books.apple.com/us/book/the-nashville-number-system/id1081587496 https://www.amazon.fr/Nashville-Number-System-Fake-English-ebook/dp/B01CNGQW9Q
Make it developer-focused Move the functional part to Chord Chart Studio documentation
``` function CustomChords() { return function (chord) { chord.formatted.symbol = chord.formatted.symbol .replace('M7', 'maj7') .replace('M9', 'maj9'); return chord; }; }; ``` ``` function generateRenderOptions(transposeValue, accidentalsType){ let options = {}; let rendererFactoryOptions...