Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 12:44, 3 September 2024 by NekoPillow (talk | contribs)

Documentation for this module may be created at Module:Recipe/doc

local recipe = {}

function recipe.list(frame) 
	local s = {}
	table.insert(s,"<div class='obtain recipebox'><tabber>")
	for k,v in frame:getParent().args do
		table.insert(s,"|-|")
		table.insert(s,k)
		table.insert(s,"=")
		table.insert(v)
	end
	table.insert(s,"</tabber></div>")
	return table.concat(s)
end

return recipe