Content deleted Content added
Element10101 (talk | contribs) No edit summary |
Element10101 (talk | contribs) No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 4:
function p.toIPA( args )
local ipa = ""
for k, v in ipairs(args)
do
if k ~= "text"
then
ipa = ipa .. data[v]
end
end
return mw.getCurrentFrame():expandTemplate({
title = "IPA",
args = {
"de",
ipa,
args["text"]
}
})
end
|