Module:IPAc-de/sandbox

This is an old revision of this page, as edited by Element10101 (talk | contribs) at 02:39, 5 August 2025. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local data = mw.loadData( 'Module:IPAc-de/data/sandbox' )

local p = {}

function p.toIPA( args )
	local ipa = ""
	
	for k, v in ipairs(args)
	do
		ipa = ipa .. data[v]
	end
	
	return ipa
end

function p.main( frame )
	return p.toIPA( frame:getParent().args )
end

return p