You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to be able to press a button that will simplify the chart!
Proposed Solution
Have an additional suffix normalize mapping that will basically make some suffix' blank, and turn some into another simpler suffix.
Ie:
G(13) => G(7)
A(5) => G
A7(b9b13) => A7
Be able to mark a chord with some special notation that would remove the chord if simplified version was on. My first thought would be to use a '*' and the regex would look for the * and know that this chord can be removed if simplified version is on.
{t: Example}
[A]This is an [*A(4)]example song[G(13)]
would output to this when in simple mode
Example
A G(7)
This is an example song
instead of
Example
A A(4) G(13)
This is an example song
The text was updated successfully, but these errors were encountered:
Background & Motivation
I want to be able to press a button that will simplify the chart!
Proposed Solution
Have an additional suffix normalize mapping that will basically make some suffix' blank, and turn some into another simpler suffix.
Ie:
Be able to mark a chord with some special notation that would remove the chord if simplified version was on. My first thought would be to use a '*' and the regex would look for the * and know that this chord can be removed if simplified version is on.
would output to this when in simple mode
instead of
The text was updated successfully, but these errors were encountered: