45,647
edits
No edit summary |
No edit summary |
||
Line 51: | Line 51: | ||
} | } | ||
term = crux(term) | term = export.crux(term) | ||
for _, oldrule in ipairs(oldrules) do | for _, oldrule in ipairs(oldrules) do | ||
Line 84: | Line 84: | ||
for word in gsplit(term, " ") do | for word in gsplit(term, " ") do | ||
table.insert(result, crux(word)) | table.insert(result, export.crux(word)) | ||
end | end | ||
Line 99: | Line 99: | ||
local ipa = "* " | local ipa = "* " | ||
ipa = ipa .. line_format(separate_word(term), {'Modern'}) | ipa = ipa .. line_format(separate_word(term), {'Modern'}) | ||
if crux(term) ~= oldcrux(term) then | if export.crux(term) ~= export.oldcrux(term) then | ||
ipa = ipa .. "\n" .. line_format(separate_word(term), {'Antique'}) | ipa = ipa .. "\n" .. line_format(separate_word(term), {'Antique'}) | ||
end | end |