New in version 2.0.
Get exactly one LilyPond comment attached to component:
abjad> staff = Staff("c'8 d'8 e'8 f'8")
abjad> marktools.LilyPondComment('comment')(staff[0])
LilyPondComment('comment')(c'8)
abjad> f(staff)
\new Staff {
% comment
c'8
d'8
e'8
f'8
}
abjad> marktools.get_lilypond_comment_attached_to_component(staff[0])
LilyPondComment('comment')(c'8)
Return one LilyPond comment.
Raise missing mark error when no LilyPond comment is attached.
Raise extra mark error when more than one LilyPond comment is attached.