]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/output-attributes.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / output-attributes.ly
1 \version "2.17.6"
2
3 \header {
4   texidoc = "Shows the output-attributes property of a grob being set.
5 This should have no effect in the Postscript backend.  In the SVG
6 backend these settings should produce this group tag:
7 @code{<g id=\"123\" class=\"foo\" data-whatever=\"bar\"> @dots{} </g>}
8 "
9 }
10
11 {
12   \override NoteHead.output-attributes =
13   #'((id . 123) (class . foo) (data-whatever . "bar"))
14   c
15 }