47,697
edits
![]() | We're back! Sorry, bad combo of sickness, funeral and a month-long trip abroad. The site is back now. ![]() |
No edit summary |
No edit summary |
||
Line 118: | Line 118: | ||
return term | return term | ||
end | |||
function separate_word(term) | |||
local result = {} | |||
for word in gsplit(term, " ") do | |||
table.insert(result, export.crux(word)) | |||
end | |||
return table.concat(result, " ") | |||
end | end | ||
Line 129: | Line 139: | ||
local IPA_args = {} | local IPA_args = {} | ||
local phonetic = | local phonetic = separate_word(term) | ||
table.insert(IPA_args, {pron = '[' .. phonetic .. ']'}) | table.insert(IPA_args, {pron = '[' .. phonetic .. ']'}) | ||