We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tonal.Progression.fromRomanNumerals("C", ["ii"])
and
tonal.Progression.fromRomanNumerals("C", ["II"])
both output
['D']
The text was updated successfully, but these errors were encountered:
Well, I guess this is intended. The rationale is that chord symbols always uses a uppercase letter for the note name. So minor D is "Dm" or "Dm7".
In theory we could convert any "ii" to "m" or "m7"... but which one?
A possible solution is to convert "ii" string to "IIm7" before using fromRomanNumerls (and the same for any other minor chord)
fromRomanNumerls
Do you have any other suggestion?
Sorry, something went wrong.
No branches or pull requests
and
both output
The text was updated successfully, but these errors were encountered: