add multiple hw comps in mw colocation

This commit is contained in:
Luka Kavčič 2022-02-16 18:07:14 +01:00
parent 77a1e632a2
commit 60f70b60b7

View File

@ -351,8 +351,12 @@ class SkeInsert(DataChgClickMessage):
lex.text = structure[i] lex.text = structure[i]
lex.role = "other" lex.role = "other"
elif structure[i][0] in ["S", "G", "P", "R"]: elif structure[i][0] in ["S", "G", "P", "R"]:
lex.text = headword for hw in headword.split(" "):
lex.role = "headword" lex = ComponentLexeme()
lex.text = hw
lex.role = "headword"
lexemes.append(lex)
lexemes.pop(-1)
else: else:
lex.text = example.word lex.text = example.word
lex.role = "collocate" lex.role = "collocate"