File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -92,22 +92,22 @@ def __init__(self):
9292
9393 def parse_text (self , ly_text , filename = None ):
9494 """Parse the LilyPond source specified as text.
95-
95+
9696 If you specify a filename, it can be used to resolve \\ include commands
9797 correctly.
98-
98+
9999 """
100100 doc = ly .document .Document (ly_text )
101101 doc .filename = filename
102102 self .parse_document (doc )
103103
104104 def parse_document (self , ly_doc , relative_first_pitch_absolute = False ):
105105 """Parse the LilyPond source specified as a ly.document document.
106-
106+
107107 If relative_first_pitch_absolute is set to True, the first pitch in a
108108 \r elative expression without startpitch is considered to be absolute
109109 (LilyPond 2.18+ behaviour).
110-
110+
111111 """
112112 # The document is copied and the copy is converted to absolute mode to
113113 # facilitate the export. The original document is unchanged.
You can’t perform that action at this time.
0 commit comments