\type Lyrics \lyrics { 'got8 me on my knees,4 Le-8 lie! })COMMENT(
)The result is technically correct, but it needs a melody to make it
-performable: COMMENT(
+perfor0mable: COMMENT(
)mudela(fragment,verbatim)(
<
for triplet in LilyPond reflects this. To make a triplet, you enter
COMMENT(
-)mudela(fragment,center)(
+)mudela(verbatim,fragment,center)(
\type Voice \times 2/3 { c''4 c''4 c''4 }
)COMMENT(
the following example:
COMMENT(
-)mudela(fragment,center)(
+)mudela(fragment,verbatim,center)(
c''4 \times 2/3 { c''4 c''4 c''4 } c''4
)COMMENT(
sect(Repeats)
+[todo]
def conv(lines):
newlines =[]
for x in lines:
- x = re.sub ('<\\[ ','[<', x)
+ x = re.sub ('<\\[','[<', x)
x = re.sub ('\\]>','>]', x)
newlines.append (x)
return newlines