mirror of
https://github.com/kastdeur/bwwtolily.git
synced 2024-12-04 08:53:33 +01:00
'^[abcdef]' ties are old ties
Do not look for the e tie, as this is the new 'end of tie'
This commit is contained in:
parent
b9bfeed838
commit
9a43ba9688
1 changed files with 5 additions and 5 deletions
10
bwwtolily.py
10
bwwtolily.py
|
@ -52,8 +52,8 @@ class bwwtolily :
|
|||
self.regex_strike = re.compile("str([h|l]*[abcdefg])")
|
||||
#a regex to find dots
|
||||
self.regex_dot = re.compile("'[h|l]*[abcdefg]")
|
||||
#a regex to find note ties
|
||||
self.regex_tie = re.compile("\^t[h|l]?[abcdefg]")
|
||||
#a regex to find old note ties
|
||||
self.regex_old_tie = re.compile("\^t[h|l]?[abcdfg]")
|
||||
#a regex to find sub repeats
|
||||
self.regex_sub_repeat = re.compile("'([0-9]+)")
|
||||
#a regex to find note slurs, not slur embellishments
|
||||
|
@ -288,9 +288,9 @@ class bwwtolily :
|
|||
self.tune_elements[self.most_recent_note]+="."
|
||||
return
|
||||
|
||||
#is the element a note tie
|
||||
tie_result = self.regex_tie.search(element)
|
||||
if tie_result:
|
||||
#is the element an old note tie
|
||||
old_tie_result = self.regex_old_tie.search(element)
|
||||
if old_tie_result:
|
||||
self.tune_elements[self.most_recent_note]+="~"
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue