Abjad / abjad

Abjad is a Python API for building LilyPond files. Use Abjad to make PDFs of music notation.
https://abjad.github.io
GNU General Public License v3.0
239 stars 39 forks source link

Changed abjad.StartMarkup to abjad.InstrumentName. #1461

Closed trevorbaca closed 2 years ago

trevorbaca commented 2 years ago
OLD: abjad.StartMarkup(markup=abjad.Markup(r"\markup Vc."))
NEW: abjad.InstrumentName(r"\markup Vc")

Changed abjad.MarginMarkup to abjad.ShortInstrumentName.

OLD: abjad.MarginMarkup(markup=r"\markup Vc.")
NEW: abjad.ShortInstrumentName(r"\markup Vc.")

Closes #1459