Module:Ups and downs notation: Difference between revisions
cleanup |
ArrowHead294 (talk | contribs) mNo edit summary |
||
| Line 80: | Line 80: | ||
.. "</sup>" | .. "</sup>" | ||
.. last_diatonic_names[j] | .. last_diatonic_names[j] | ||
.. string.rep(" | .. string.rep("\u{266F}", num_sharps) | ||
.. string.rep(" | .. string.rep("\u{1D12A}", num_double_sharps) | ||
) | ) | ||
else | else | ||
| Line 88: | Line 88: | ||
string.rep("^", num_ups) | string.rep("^", num_ups) | ||
.. last_diatonic_names[j] | .. last_diatonic_names[j] | ||
.. string.rep(" | .. string.rep("\u{266F}", num_sharps) | ||
.. string.rep(" | .. string.rep("\u{1D12A}", num_double_sharps) | ||
) | ) | ||
end | end | ||
| Line 114: | Line 114: | ||
table.insert( | table.insert( | ||
note_names[i], | note_names[i], | ||
"v<sup>" .. num_downs .. "</sup>" .. last_diatonic_names[j] .. string.rep(" | "v<sup>" .. num_downs .. "</sup>" .. last_diatonic_names[j] .. string.rep("\u{266D}", num_flats) | ||
) | ) | ||
else | else | ||
table.insert( | table.insert( | ||
note_names[i], | note_names[i], | ||
string.rep("v", num_downs) .. last_diatonic_names[j] .. string.rep(" | string.rep("v", num_downs) .. last_diatonic_names[j] .. string.rep("\u{266D}", num_flats) | ||
) | ) | ||
end | end | ||