Module:Sandbox/Ahecht/navboxtolua

This is an old revision of this page, as edited by Ahecht (talk | contribs) at 20:48, 24 December 2023 (code nowiki). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

return {[''] = function(frame)
	local args = require('Module:Arguments').getArgs(frame)
	local output = "{\n"
	for k,v in pairs(args) do
		output = output .. k .. ' = "'  .. v .. '",'
	end
	return frame:callParserFunction( '#tag', 'code', frame:callParserFunction( '#tag', 'nowiki', output .. "\n}" ))
	end
}