forked from Abjad/abjad
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: all abjad.Markup() must now initialize with literal=True. OLD: abjad.Markup("Allegro") NEW: abjad.Markup(r"\markup Allegro", literal=True) Markup now formats on a single line: >>> staff = abjad.Staff("c'4 d' e' f'") >>> markup = abjad.Markup(r'\bold Allegro') >>> abjad.attach(markup, staff[0]) >>> string = abjad.lilypond(staff) OLD: >>> print(string) \new Staff { c'4 - \markup { \bold Allegro } d'4 e'4 f'4 } NEW: >>> print(string) \new Staff { c'4 - \markup { \bold Allegro } d'4 e'4 f'4 } * Removed abjad.Markup.__add__(), __radd__() * Removed abjad.Markup.postscript() * Removed abjad.markups.abjad_metronome_mark() REMOVED: * Removed abjad.OrderedDict; use dict() instead; Closes Abjad#1366.
- Loading branch information
1 parent
9793fba
commit 63520b2
Showing
52 changed files
with
1,498 additions
and
2,426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.